mirror of
https://github.com/snachodog/just-the-docs.git
synced 2026-06-04 10:08:01 -06:00
Initial commit
This commit is contained in:
+8
@@ -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
@@ -0,0 +1,8 @@
|
||||
.gitignore
|
||||
.gitattributes
|
||||
|
||||
.travis.yml
|
||||
validator/
|
||||
|
||||
Contributing.md
|
||||
sample-data.json
|
||||
+101
@@ -0,0 +1,101 @@
|
||||
# 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:
|
||||
* `HTML5`
|
||||
* `CSS`
|
||||
* `CSS2`
|
||||
* `CSS3`
|
||||
* `SVG`
|
||||
* `PNG`
|
||||
* `JS API`
|
||||
* `Canvas`
|
||||
* `DOM`
|
||||
* `Other`
|
||||
* **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
@@ -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
@@ -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 (http://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>http://caniuse.com
|
||||
<br>http://a.deveria.com
|
||||
+1
File diff suppressed because one or more lines are too long
+285
@@ -0,0 +1,285 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"a #1"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"Support refers to using 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":86.99,
|
||||
"usage_perc_a":6.51,
|
||||
"ucprefix":false,
|
||||
"parent":"audio",
|
||||
"keywords":"audio/aac",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+285
@@ -0,0 +1,285 @@
|
||||
{
|
||||
"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 standardised as A/52:2012.",
|
||||
"spec":"http://atsc.org/standard/a522012-digital-audio-compression-ac-3-e-ac-3-standard-12172012/",
|
||||
"status":"other",
|
||||
"links":[
|
||||
{
|
||||
"url":"http://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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"a #1"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Claims \"probably\" support, actual playback is untested"
|
||||
},
|
||||
"usage_perc_y":1.64,
|
||||
"usage_perc_a":18.42,
|
||||
"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
|
||||
}
|
||||
+294
@@ -0,0 +1,294 @@
|
||||
{
|
||||
"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":"Mozilla Developer Network"
|
||||
},
|
||||
{
|
||||
"url":"https://github.com/Financial-Times/polyfill-service/blob/master/polyfills/Event/polyfill-ie8.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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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](http://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.86,
|
||||
"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
|
||||
}
|
||||
+298
@@ -0,0 +1,298 @@
|
||||
{
|
||||
"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":"Mozilla article"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"u"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"u"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"u",
|
||||
"11":"u"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"u"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"u"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":11.72,
|
||||
"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
|
||||
}
|
||||
+289
@@ -0,0 +1,289 @@
|
||||
{
|
||||
"title":"Ambient Light API",
|
||||
"description":"Defines events that provide information about the ambient light level, as measured by a device's light sensor.",
|
||||
"spec":"http://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"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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)"
|
||||
},
|
||||
"usage_perc_y":1.44,
|
||||
"usage_perc_a":6.47,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"ambientlightsensorapi",
|
||||
"chrome_id":"5298357018820608",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+305
@@ -0,0 +1,305 @@
|
||||
{
|
||||
"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":"http://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"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"Where support for APNG is missing, only the first frame is displayed",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":18.76,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"6691520493125632",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+289
@@ -0,0 +1,289 @@
|
||||
{
|
||||
"title":"Arrow functions",
|
||||
"description":"Function shorthand using `=>` syntax and lexical `this` binding.",
|
||||
"spec":"http://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":"Arrow Functions (MDN)"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
|
||||
],
|
||||
"categories":[
|
||||
"JS API"
|
||||
],
|
||||
"stats":{
|
||||
"ie":{
|
||||
"5.5":"n",
|
||||
"6":"n",
|
||||
"7":"n",
|
||||
"8":"n",
|
||||
"9":"n",
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"edge":{
|
||||
"12":"y",
|
||||
"13":"y",
|
||||
"14":"y",
|
||||
"15":"y"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":70.09,
|
||||
"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
|
||||
}
|
||||
+299
@@ -0,0 +1,299 @@
|
||||
{
|
||||
"title":"asm.js",
|
||||
"description":"an extraordinarily optimizable, low-level subset of JavaScript, indended 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":"http://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 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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"a #1"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":8.09,
|
||||
"usage_perc_a":53.22,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"asm,asm.js,asmjs,WebAssembly",
|
||||
"ie_id":"asmjs",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"asmjs",
|
||||
"webkit_id":"feature-asm.js",
|
||||
"shown":true
|
||||
}
|
||||
+290
@@ -0,0 +1,290 @@
|
||||
{
|
||||
"title":"Async functions",
|
||||
"description":"Async function make it possible 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":"Async Functions (MDN)"
|
||||
},
|
||||
{
|
||||
"url":"https://developers.google.com/web/fundamentals/getting-started/primers/async-functions",
|
||||
"title":"Async functions - making promises friendly"
|
||||
}
|
||||
],
|
||||
"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 d #1",
|
||||
"15":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":48.19,
|
||||
"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
|
||||
}
|
||||
+295
@@ -0,0 +1,295 @@
|
||||
{
|
||||
"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 article on btoa()"
|
||||
},
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/API/Window.atob",
|
||||
"title":"MDN article on atob()"
|
||||
},
|
||||
{
|
||||
"url":"https://github.com/davidchambers/Base64.js",
|
||||
"title":"Polyfill"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
{
|
||||
"description":"To avoid \"Character out of range\" exceptions on Unicode strings, [this workaround](http://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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":97.55,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"atob,btoa",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+299
@@ -0,0 +1,299 @@
|
||||
{
|
||||
"title":"Web Audio API",
|
||||
"description":"High-level JavaScript API for processing and synthesizing audio",
|
||||
"spec":"http://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":"http://docs.webplatform.org/wiki/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"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":77.4,
|
||||
"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":"",
|
||||
"shown":true
|
||||
}
|
||||
+321
@@ -0,0 +1,321 @@
|
||||
{
|
||||
"title":"Audio element",
|
||||
"description":"Method of playing sound on webpages (without requiring a plug-in).",
|
||||
"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":"http://docs.webplatform.org/wiki/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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":94.33,
|
||||
"usage_perc_a":0.02,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"<audio>",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+285
@@ -0,0 +1,285 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Supported in Firefox by enabling \"media.track.enabled\" in about:config"
|
||||
},
|
||||
"usage_perc_y":18.37,
|
||||
"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
|
||||
}
|
||||
+287
@@ -0,0 +1,287 @@
|
||||
{
|
||||
"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":"http://davidwalsh.name/autofocus",
|
||||
"title":"Article on autofocus"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"While not supported in iOS Safari, it does work in iOS WebViews.",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":75.15,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+293
@@ -0,0 +1,293 @@
|
||||
{
|
||||
"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":"http://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 article"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
{
|
||||
"description":"iOS has an issue preventing `background-position: fixed` from being used with `background-size: cover` - [see details](http://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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"a #4"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"a #1"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"Most mobile devices have a delay in updating the background position after scrolling a page with `fixed` backgrounds.",
|
||||
"notes_by_num":{
|
||||
"1":"Partial support refers to supporting `fixed` but not `local`",
|
||||
"2":"Partial support refers to supporting `local` but not `fixed`",
|
||||
"3":"Only supports `local` when `-webkit-overflow-scrolling: touch` is _not_ used",
|
||||
"4":"Does not support `fixed`, and due [to a bug](https://crbug.com/627037) only supports `local` if a `border-radius` is set on the element."
|
||||
},
|
||||
"usage_perc_y":43.5,
|
||||
"usage_perc_a":45.91,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+306
@@ -0,0 +1,306 @@
|
||||
{
|
||||
"title":"CSS3 Background-image options",
|
||||
"description":"New properties to affect background images, including background-clip, background-origin and background-size",
|
||||
"spec":"http://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":"http://www.css3files.com/background/",
|
||||
"title":"Information page"
|
||||
},
|
||||
{
|
||||
"url":"https://github.com/louisremi/background-size-polyfill",
|
||||
"title":"Polyfill for IE7-8"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"Safari also supports 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":93.3,
|
||||
"usage_perc_a":4.49,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+293
@@ -0,0 +1,293 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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](http://stackoverflow.com/a/29282573/94197) for an example.",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":93.11,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+289
@@ -0,0 +1,289 @@
|
||||
{
|
||||
"title":"Battery Status API",
|
||||
"description":"Method to provide information about the battery status of the hosting device.",
|
||||
"spec":"http://www.w3.org/TR/battery-status/",
|
||||
"status":"cr",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/WebAPI/Battery_Status",
|
||||
"title":"MDN Docs"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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":"y",
|
||||
"53":"y",
|
||||
"54":"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 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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"a #1"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"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":62.3,
|
||||
"usage_perc_a":9.51,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"navigator.battery,navigator.getbattery,batterymanager",
|
||||
"ie_id":"batterystatusapi",
|
||||
"chrome_id":"4537134732017664",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+285
@@ -0,0 +1,285 @@
|
||||
{
|
||||
"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":"http://www.w3.org/TR/beacon/",
|
||||
"status":"wd",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/API/Navigator/sendBeacon",
|
||||
"title":"MDN article"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
|
||||
],
|
||||
"categories":[
|
||||
"JS API"
|
||||
],
|
||||
"stats":{
|
||||
"ie":{
|
||||
"5.5":"n",
|
||||
"6":"n",
|
||||
"7":"n",
|
||||
"8":"n",
|
||||
"9":"n",
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"edge":{
|
||||
"12":"n",
|
||||
"13":"n",
|
||||
"14":"y",
|
||||
"15":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":72.91,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"beacon",
|
||||
"chrome_id":"5517433905348608",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+294
@@ -0,0 +1,294 @@
|
||||
{
|
||||
"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 \u2013 Detecting print requests"
|
||||
},
|
||||
{
|
||||
"url":"http://crbug.com/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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"u",
|
||||
"11":"u"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"u"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"u"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"Due to its wider support, consider using `window.matchMedia('print')` where possible.",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":13.19,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"print,printer,printing,beforeprint,afterprint",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+289
@@ -0,0 +1,289 @@
|
||||
{
|
||||
"title":"Blob constructing",
|
||||
"description":"Construct Blobs (binary large objects) either using the BlobBuilder API (deprecated) or the Blob constructor.",
|
||||
"spec":"http://www.w3.org/TR/FileAPI/#constructorBlob",
|
||||
"status":"wd",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en/DOM/BlobBuilder",
|
||||
"title":"MDN article on BlobBuilder"
|
||||
},
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/DOM/Blob",
|
||||
"title":"MDN article on 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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"a x"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"Partial support refers to only supporting the now deprecated BlobBuilder to create blobs.",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":82.13,
|
||||
"usage_perc_a":11.67,
|
||||
"ucprefix":true,
|
||||
"parent":"fileapi",
|
||||
"keywords":"",
|
||||
"ie_id":"blob",
|
||||
"chrome_id":"5328783104016384",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+290
@@ -0,0 +1,290 @@
|
||||
{
|
||||
"title":"Blob URLs",
|
||||
"description":"Method of creating URL handles to the specified File or Blob object.",
|
||||
"spec":"http://www.w3.org/TR/FileAPI/#url",
|
||||
"status":"wd",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en/DOM/window.URL.createObjectURL",
|
||||
"title":"MDN article"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
{
|
||||
"description":"Safari has [a serious issue](http://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](http://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",
|
||||
"13":"y",
|
||||
"14":"y",
|
||||
"15":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y x"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":93.65,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"fileapi",
|
||||
"keywords":"createobjecturl,revokeobjecturl",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+301
@@ -0,0 +1,301 @@
|
||||
{
|
||||
"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":"http://www.css3files.com/border/",
|
||||
"title":"Information page"
|
||||
},
|
||||
{
|
||||
"url":"http://docs.webplatform.org/wiki/css/properties/border-image",
|
||||
"title":"WebPlatform Docs"
|
||||
},
|
||||
{
|
||||
"url":"https://developer.mozilla.org//docs/Web/CSS/border-image",
|
||||
"title":"Border image on MDN"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"op_mini":{
|
||||
"all":"a x #2 #3 #4"
|
||||
},
|
||||
"android":{
|
||||
"2.1":"a #1 #2 #3 #4",
|
||||
"2.2":"a #1 #2 #3 #4",
|
||||
"2.3":"a #1 #2 #3 #4",
|
||||
"3":"a #1 #2 #3 #4",
|
||||
"4":"a #1 #2 #3 #4",
|
||||
"4.1":"a #1 #2 #3 #4",
|
||||
"4.2-4.3":"a #1 #2 #3 #4",
|
||||
"4.4":"a #1 #2",
|
||||
"4.4.3-4.4.4":"a #1 #2",
|
||||
"53":"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":{
|
||||
"56":"a #2"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"a #1 #2"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"a #1 #2"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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](http://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":22.15,
|
||||
"usage_perc_a":75.01,
|
||||
"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
|
||||
}
|
||||
+319
@@ -0,0 +1,319 @@
|
||||
{
|
||||
"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":"http://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://www.css3files.com/border/#borderradius",
|
||||
"title":"Information page"
|
||||
},
|
||||
{
|
||||
"url":"http://css3pie.com/",
|
||||
"title":"Polyfill which includes border-radius"
|
||||
},
|
||||
{
|
||||
"url":"http://docs.webplatform.org/wiki/css/properties/border-radius",
|
||||
"title":"WebPlatform Docs"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
{
|
||||
"description":"Safari does not apply `border-radius` correctly to image borders: http://stackoverflow.com/q/17202128"
|
||||
},
|
||||
{
|
||||
"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":"Older versions of Safari [had a bug](https://bugs.webkit.org/show_bug.cgi?id=50072) where background images would bleed out of the border-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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Safari 6.1 and earlier did not apply `border-radius` correctly to image borders: http://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":94.37,
|
||||
"usage_perc_a":0.02,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"roundedcorners, border radius,-moz-border-radius",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+285
@@ -0,0 +1,285 @@
|
||||
{
|
||||
"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 article"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
|
||||
],
|
||||
"categories":[
|
||||
"JS API"
|
||||
],
|
||||
"stats":{
|
||||
"ie":{
|
||||
"5.5":"n",
|
||||
"6":"n",
|
||||
"7":"n",
|
||||
"8":"n",
|
||||
"9":"n",
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"edge":{
|
||||
"12":"n",
|
||||
"13":"n",
|
||||
"14":"n",
|
||||
"15":"n"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":55,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"broadcast,channel,messaging",
|
||||
"ie_id":"",
|
||||
"chrome_id":"4585496197988352",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+298
@@ -0,0 +1,298 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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 d #1",
|
||||
"37":"n d #1",
|
||||
"38":"y",
|
||||
"39":"y",
|
||||
"40":"y",
|
||||
"41":"y",
|
||||
"42":"y",
|
||||
"43":"y",
|
||||
"44":"y",
|
||||
"45":"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Supported in Chrome and Opera behind the 'Brotli Content-Encoding' flag",
|
||||
"2":"Enabled since 27 May 2016"
|
||||
},
|
||||
"usage_perc_y":55.86,
|
||||
"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
|
||||
}
|
||||
+326
@@ -0,0 +1,326 @@
|
||||
{
|
||||
"title":"calc() as CSS unit value",
|
||||
"description":"Method of allowing calculated values for length units, i.e. `width: calc(100% - 3em)`",
|
||||
"spec":"http://www.w3.org/TR/css3-values/#calc",
|
||||
"status":"cr",
|
||||
"links":[
|
||||
{
|
||||
"url":"http://hacks.mozilla.org/2010/06/css3-calc/",
|
||||
"title":"Mozilla Hacks article"
|
||||
},
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en/docs/Web/CSS/calc",
|
||||
"title":"MDN article"
|
||||
},
|
||||
{
|
||||
"url":"http://docs.webplatform.org/wiki/css/functions/calc",
|
||||
"title":"WebPlatform Docs"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
{
|
||||
"description":"IE10 crashes when a div with a property using `calc()` has a child with [same property with inherit](http://stackoverflow.com/questions/19423384/css-less-calc-method-is-crashing-my-ie10)."
|
||||
},
|
||||
{
|
||||
"description":"IE 9 - 11 don't render `box-shadow` when `calc()` is used for any of the values"
|
||||
},
|
||||
{
|
||||
"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":"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":"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](http://stackoverflow.com/questions/31323915/internet-explorer-incorrectly-calculates-percentage-height-for-generated-content)"
|
||||
},
|
||||
{
|
||||
"description":"IE11 does not support transitioning values set with `calc()`"
|
||||
},
|
||||
{
|
||||
"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":"Firefox does not support `width: calc()` on table cells. [Bug Report](https://bugzilla.mozilla.org/show_bug.cgi?id=1297576)"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":82.16,
|
||||
"usage_perc_a":2.08,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"csscalc",
|
||||
"chrome_id":"5765241438732288",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+285
@@ -0,0 +1,285 @@
|
||||
{
|
||||
"title":"Canvas blend modes",
|
||||
"description":"Method of defining the effect resulting from overlaying two layers on a Canvas element.",
|
||||
"spec":"http://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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":78.87,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"canvas",
|
||||
"keywords":"",
|
||||
"ie_id":"compositingandblendingincanvas2d",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+298
@@ -0,0 +1,298 @@
|
||||
{
|
||||
"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":"http://docs.webplatform.org/wiki/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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":94.33,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"canvas",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+324
@@ -0,0 +1,324 @@
|
||||
{
|
||||
"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":"http://explorercanvas.googlecode.com/",
|
||||
"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"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
{
|
||||
"description":"The Android browser does not support clipping on HTML5 canvas. See the bug filed here: http://code.google.com/p/android/issues/detail?id=21099"
|
||||
},
|
||||
{
|
||||
"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](http://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](http://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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":94.36,
|
||||
"usage_perc_a":3.49,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"toDataURL()",
|
||||
"ie_id":"canvas",
|
||||
"chrome_id":"5100084685438976",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+289
@@ -0,0 +1,289 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":79.64,
|
||||
"usage_perc_a":4.4,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"ch unit,character unit",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+293
@@ -0,0 +1,293 @@
|
||||
{
|
||||
"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":[
|
||||
"Other"
|
||||
],
|
||||
"stats":{
|
||||
"ie":{
|
||||
"5.5":"n",
|
||||
"6":"n",
|
||||
"7":"n",
|
||||
"8":"n",
|
||||
"9":"n",
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"edge":{
|
||||
"12":"n",
|
||||
"13":"n",
|
||||
"14":"n",
|
||||
"15":"n"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Old versions of Chrome use non-standard code points for ChaCha20-Poly1305 cipher suites."
|
||||
},
|
||||
"usage_perc_y":62.15,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"chacha20,poly1305,tls,cipher",
|
||||
"ie_id":"",
|
||||
"chrome_id":"5355238106071040",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+285
@@ -0,0 +1,285 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":92.72,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"x-doc-messaging",
|
||||
"keywords":"",
|
||||
"ie_id":"messagechannels",
|
||||
"chrome_id":"6710044586409984",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+285
@@ -0,0 +1,285 @@
|
||||
{
|
||||
"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":"Mozilla Developer Network"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":87.92,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"ChildNode,remove,delete,node,DOM",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+310
@@ -0,0 +1,310 @@
|
||||
{
|
||||
"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":"http://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":"http://docs.webplatform.org/wiki/dom/Element/classList",
|
||||
"title":"WebPlatform Docs"
|
||||
},
|
||||
{
|
||||
"url":"http://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 article"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"edge":{
|
||||
"12":"y",
|
||||
"13":"y",
|
||||
"14":"y",
|
||||
"15":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"a #1 #2 #3",
|
||||
"11":"a #1 #2 #3"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"a #1 #2 #3"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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"
|
||||
},
|
||||
"usage_perc_y":78.82,
|
||||
"usage_perc_a":18.57,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+297
@@ -0,0 +1,297 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":51.74,
|
||||
"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
|
||||
}
|
||||
+297
@@ -0,0 +1,297 @@
|
||||
{
|
||||
"title":"Clipboard API",
|
||||
"description":"API to provide copy, cut and paste events as well as provide access to the OS clipboard.",
|
||||
"spec":"http://www.w3.org/TR/clipboard-apis/",
|
||||
"status":"wd",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/API/ClipboardEvent",
|
||||
"title":"MDN page on 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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"a #5"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"a #4"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"a #2 #5"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"a #5 #7"
|
||||
}
|
||||
},
|
||||
"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":84.29,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"cut,copy,paste,clipboarddata,clipboardevent",
|
||||
"ie_id":"clipboardapi",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+286
@@ -0,0 +1,286 @@
|
||||
{
|
||||
"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":"Mozilla Developer Network article"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"a #1"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":85.25,
|
||||
"usage_perc_a":12.32,
|
||||
"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
|
||||
}
|
||||
+302
@@ -0,0 +1,302 @@
|
||||
{
|
||||
"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 article"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y #4"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y #5"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n #2",
|
||||
"11":"n #2"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n #2"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y #4"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"The basic functions that this information refers to include `console.log`, `console.info`, `console.warn`, `console.error`.",
|
||||
"notes_by_num":{
|
||||
"1":"Only supports console functions when developer tools are open, otherwise the `console` object is undefined and any calls will throw errors.",
|
||||
"2":"Allows `console` functions to be used without throwing errors, but does not appear to output the data anywhere.",
|
||||
"3":"Log output on iOS 6+ Safari can only be seen by connecting to a Mac and using the [Safari debugger](https://developer.apple.com/safari/tools/).",
|
||||
"4":"Log output on older Android browsers can be retrieved via Android's `logcat` command or using Chrome Developer Tools in Android 4.4+/Chrome for Android [see details](http://developer.android.com/guide/webapps/debugging.html)",
|
||||
"5":"Log output on Firefox for Android can be [accessed using WebIDE](https://developer.mozilla.org/en-US/docs/Tools/Remote_Debugging/Debugging_Firefox_for_Android_with_WebIDE)",
|
||||
"6":"See [this article](https://dev.opera.com/articles/opera-mini-and-javascript/) for details on how to see console logging in Opera Mini"
|
||||
},
|
||||
"usage_perc_y":88.01,
|
||||
"usage_perc_a":0.69,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"console.log,console.info,console.warn,console.error,window.console",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+292
@@ -0,0 +1,292 @@
|
||||
{
|
||||
"title":"const",
|
||||
"description":"Declares a constant with block level scope",
|
||||
"spec":"http://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":"Const (MDN)"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"a #2 #3"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"a #4"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"a #2 #3"
|
||||
}
|
||||
},
|
||||
"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":73.46,
|
||||
"usage_perc_a":23.77,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"ES6,constant,block,scope",
|
||||
"ie_id":"",
|
||||
"chrome_id":"4645595339816960",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+302
@@ -0,0 +1,302 @@
|
||||
{
|
||||
"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":"http://accessgarage.wordpress.com/2009/05/08/how-to-hack-your-app-to-make-contenteditable-work/",
|
||||
"title":"Blog post on usage problems"
|
||||
},
|
||||
{
|
||||
"url":"http://docs.webplatform.org/wiki/html/attributes/contentEditable",
|
||||
"title":"WebPlatform Docs"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":94.86,
|
||||
"usage_perc_a":0.03,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"iscontenteditable",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+298
@@ -0,0 +1,298 @@
|
||||
{
|
||||
"title":"Content Security Policy 1.0",
|
||||
"description":"Mitigate cross-site scripting attacks by whitelisting allowed sources of script, style, and other resources.",
|
||||
"spec":"http://www.w3.org/TR/2012/CR-CSP-20121115/",
|
||||
"status":"cr",
|
||||
"links":[
|
||||
{
|
||||
"url":"http://html5rocks.com/en/tutorials/security/content-security-policy/",
|
||||
"title":"HTML5Rocks article"
|
||||
},
|
||||
{
|
||||
"url":"http://content-security-policy.com/",
|
||||
"title":"CSP Examples & Quick Reference"
|
||||
}
|
||||
],
|
||||
"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":[
|
||||
"Other"
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"a #1",
|
||||
"11":"a #1"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y #2"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":88.34,
|
||||
"usage_perc_a":4.67,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"csp,security,header",
|
||||
"ie_id":"contentsecuritypolicy",
|
||||
"chrome_id":"5205088045891584",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+291
@@ -0,0 +1,291 @@
|
||||
{
|
||||
"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":"http://www.w3.org/TR/CSP/",
|
||||
"status":"cr",
|
||||
"links":[
|
||||
{
|
||||
"url":"http://html5rocks.com/en/tutorials/security/content-security-policy/",
|
||||
"title":"HTML5Rocks article"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"a #6"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":66.97,
|
||||
"usage_perc_a":6.69,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"csp,header,nonce,hash",
|
||||
"ie_id":"contentsecuritypolicylevel2",
|
||||
"chrome_id":"4957003285790720",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+310
@@ -0,0 +1,310 @@
|
||||
{
|
||||
"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":"http://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"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"a #1",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":92.72,
|
||||
"usage_perc_a":1.99,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+305
@@ -0,0 +1,305 @@
|
||||
{
|
||||
"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":"Mozilla Developer Network"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"52":"y",
|
||||
"53":"y",
|
||||
"54":"y",
|
||||
"55":"y",
|
||||
"56":"y",
|
||||
"57":"y",
|
||||
"58":"y",
|
||||
"59":"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":49.22,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"credential,navigator.credentials",
|
||||
"ie_id":"",
|
||||
"chrome_id":"5026422640869376",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+315
@@ -0,0 +1,315 @@
|
||||
{
|
||||
"title":"Web Cryptography",
|
||||
"description":"JavaScript API for performing basic cryptographic operations in web applications",
|
||||
"spec":"http://www.w3.org/TR/WebCryptoAPI/",
|
||||
"status":"cr",
|
||||
"links":[
|
||||
{
|
||||
"url":"http://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"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
|
||||
],
|
||||
"categories":[
|
||||
"JS API"
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"TP":"y x #3"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"p"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"p",
|
||||
"11":"a x #1"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"p"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":76.07,
|
||||
"usage_perc_a":4.26,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"subtle,subtlecrypto",
|
||||
"ie_id":"webcryptoapi",
|
||||
"chrome_id":"5030265697075200",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"specification-webcrypto",
|
||||
"shown":true
|
||||
}
|
||||
+297
@@ -0,0 +1,297 @@
|
||||
{
|
||||
"title":"CSS all property",
|
||||
"description":"A shorthand property for resetting all CSS properties except for `direction` and `unicode-bidi`.",
|
||||
"spec":"http://www.w3.org/TR/css-cascade-3/#all-shorthand",
|
||||
"status":"cr",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/all",
|
||||
"title":"Mozilla Developer Network"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":74.64,
|
||||
"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
|
||||
}
|
||||
+313
@@ -0,0 +1,313 @@
|
||||
{
|
||||
"title":"CSS Animation",
|
||||
"description":"Complex method of animating certain properties of an element",
|
||||
"spec":"http://www.w3.org/TR/css3-animations/",
|
||||
"status":"wd",
|
||||
"links":[
|
||||
{
|
||||
"url":"http://robertnyman.com/2010/05/06/css3-animations/",
|
||||
"title":"Blog post on usage"
|
||||
},
|
||||
{
|
||||
"url":"http://www.css3files.com/animation/",
|
||||
"title":"Information page"
|
||||
},
|
||||
{
|
||||
"url":"http://docs.webplatform.org/wiki/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](http://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](http://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](http://codepen.io/flxsource/pen/jPYWoE)"
|
||||
},
|
||||
{
|
||||
"description":"IE10 and IE11 will not fire Animation events for pseudo element animations. See [example here](http://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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"9.1":"y",
|
||||
"10":"y",
|
||||
"10.1":"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"
|
||||
},
|
||||
"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",
|
||||
"9.3":"y",
|
||||
"10.0-10.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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y x"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y x"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Partial support in Android browser refers to buggy behavior in different scenarios."
|
||||
},
|
||||
"usage_perc_y":93.99,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"animations,css-animations,animation-name,animation-duration,animation-delay,animation-timing-function,@keyframes,animationstart,animationend,animationiteration,css3 animation",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+285
@@ -0,0 +1,285 @@
|
||||
{
|
||||
"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 page"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y x"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y x"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"u"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"u"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y x"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":72.03,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"any-link,css4,selector,visited",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":false
|
||||
}
|
||||
+287
@@ -0,0 +1,287 @@
|
||||
{
|
||||
"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":"http://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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"a x #1"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"a x #1"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"a #1 #2"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"a x #1"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"a x #1"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":89.77,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+285
@@ -0,0 +1,285 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"TP":"u"
|
||||
},
|
||||
"opera":{
|
||||
"9":"n",
|
||||
"9.5-9.6":"n",
|
||||
"10.0-10.1":"n",
|
||||
"10.5":"n",
|
||||
"10.6":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"11.6":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"15":"n",
|
||||
"16":"n",
|
||||
"17":"n",
|
||||
"18":"n",
|
||||
"19":"n",
|
||||
"20":"n",
|
||||
"21":"n",
|
||||
"22":"n",
|
||||
"23":"n",
|
||||
"24":"n",
|
||||
"25":"n",
|
||||
"26":"n",
|
||||
"27":"n",
|
||||
"28":"n",
|
||||
"29":"n",
|
||||
"30":"n",
|
||||
"31":"n",
|
||||
"32":"n",
|
||||
"33":"n",
|
||||
"34":"n",
|
||||
"35":"n",
|
||||
"36":"n",
|
||||
"37":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"n d #1"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"See also support for [CSS Variables](#feat=css-variables)",
|
||||
"notes_by_num":{
|
||||
"1":"Can be enabled via the \"Experimental web platform features\" flag under about:flags"
|
||||
},
|
||||
"usage_perc_y":0,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"5753701012602880",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+285
@@ -0,0 +1,285 @@
|
||||
{
|
||||
"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 article"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"a #1"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":6.34,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"css @counter-style, list-style",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+299
@@ -0,0 +1,299 @@
|
||||
{
|
||||
"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":"Mozilla Developer Network"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"n d #1"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n d #1"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Can be enabled via the \"Experimental Web Platform Features\" flag"
|
||||
},
|
||||
"usage_perc_y":11.52,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"blue,hue-rotate,invert,saturate,filter",
|
||||
"ie_id":"backdropfilter",
|
||||
"chrome_id":"5679432723333120",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"feature-filter-effects-backdrop-filter-propery",
|
||||
"shown":true
|
||||
}
|
||||
+294
@@ -0,0 +1,294 @@
|
||||
{
|
||||
"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":"http://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 article on 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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":87.5,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"4 value syntax",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+296
@@ -0,0 +1,296 @@
|
||||
{
|
||||
"title":"CSS background-blend-mode",
|
||||
"description":"Allows blending between CSS background images, gradients, and colors.",
|
||||
"spec":"http://www.w3.org/TR/compositing-1/#propdef-background-blend-mode",
|
||||
"status":"cr",
|
||||
"links":[
|
||||
{
|
||||
"url":"http://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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":62.86,
|
||||
"usage_perc_a":11.94,
|
||||
"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
|
||||
}
|
||||
+293
@@ -0,0 +1,293 @@
|
||||
{
|
||||
"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":"http://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 article"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"a x #1"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"a x #1"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":6.46,
|
||||
"usage_perc_a":74.37,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"box-decoration,box decoration,break",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+309
@@ -0,0 +1,309 @@
|
||||
{
|
||||
"title":"CSS3 Box-shadow",
|
||||
"description":"Method of displaying an inner or outer shadow effect to elements",
|
||||
"spec":"http://www.w3.org/TR/css3-background/#box-shadow",
|
||||
"status":"cr",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/En/CSS/-moz-box-shadow",
|
||||
"title":"MDN article"
|
||||
},
|
||||
{
|
||||
"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":"http://www.css3files.com/shadow/",
|
||||
"title":"Information page"
|
||||
},
|
||||
{
|
||||
"url":"http://docs.webplatform.org/wiki/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](http://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](http://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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":94.33,
|
||||
"usage_perc_a":0.02,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"box-shadows,boxshadows,box shadow,shaow",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+285
@@ -0,0 +1,285 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y x"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y x"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y x"
|
||||
}
|
||||
},
|
||||
"notes":"A similar effect can be achieved in Firefox 4+ using the -moz-element() background property",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":29.48,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+289
@@ -0,0 +1,289 @@
|
||||
{
|
||||
"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":"Mozilla Developer Network article"
|
||||
},
|
||||
{
|
||||
"url":"http://jsbin.com/zutuna/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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":68.54,
|
||||
"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
|
||||
}
|
||||
+295
@@ -0,0 +1,295 @@
|
||||
{
|
||||
"title":"CSS clip-path property",
|
||||
"description":"Method of defining the visible region of an element using SVG or a shape definition.",
|
||||
"spec":"http://www.w3.org/TR/css-masking-1/#the-clip-path",
|
||||
"status":"cr",
|
||||
"links":[
|
||||
{
|
||||
"url":"http://css-tricks.com/almanac/properties/c/clip/",
|
||||
"title":"CSS Tricks article"
|
||||
},
|
||||
{
|
||||
"url":"http://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"
|
||||
},
|
||||
"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":"y",
|
||||
"54":"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"a x #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":{
|
||||
"56":"a #2"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"a #1 #3"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"a x #2"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"a x #2"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"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":0,
|
||||
"usage_perc_a":77.58,
|
||||
"ucprefix":false,
|
||||
"parent":"css-masks",
|
||||
"keywords":"clippath",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+289
@@ -0,0 +1,289 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Enabled via the \"Experimental Web Platform features\" flag"
|
||||
},
|
||||
"usage_perc_y":49.24,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"csscontainment",
|
||||
"chrome_id":"6522186978295808",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+293
@@ -0,0 +1,293 @@
|
||||
{
|
||||
"title":"CSS Counters",
|
||||
"description":"Method of controlling number values in generated content, using the `counter-reset` and `counter-increment` properties.",
|
||||
"spec":"http://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 article"
|
||||
},
|
||||
{
|
||||
"url":"http://docs.webplatform.org/wiki/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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":98.28,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+297
@@ -0,0 +1,297 @@
|
||||
{
|
||||
"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 article"
|
||||
},
|
||||
{
|
||||
"url":"http://updates.html5rocks.com/2015/01/pixelated",
|
||||
"title":"HTML5Rocks article"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y #4"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y x #3"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"a x #2 #5",
|
||||
"11":"a x #2 #5"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"a x #1 #6"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y #4"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"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":72.8,
|
||||
"usage_perc_a":16.54,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"image-rendering,crisp-edges",
|
||||
"ie_id":"",
|
||||
"chrome_id":"5118058116939776",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+285
@@ -0,0 +1,285 @@
|
||||
{
|
||||
"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":"http://peter.sh/files/examples/cross-fading.html",
|
||||
"title":"Simple demo"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y x"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y x"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y x"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":71.11,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"css,image,crossfade",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+302
@@ -0,0 +1,302 @@
|
||||
{
|
||||
"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":"Mozilla Developer Network article"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"a #1"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"a #1"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"Whether `<option selected>` matches `:default` (per the spec) was not tested since `<select>`s and `<option>`s are generally not styleable, which makes it hard to formulate a test for this.",
|
||||
"notes_by_num":{
|
||||
"1":"Does not match `<input type=\"checkbox\" checked>` or `<input type=\"radio\" checked>`",
|
||||
"2":"Does not match the default submit button of a form"
|
||||
},
|
||||
"usage_perc_y":56.41,
|
||||
"usage_perc_a":34.56,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":":default,default",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+297
@@ -0,0 +1,297 @@
|
||||
{
|
||||
"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 article"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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":"u",
|
||||
"58":"u",
|
||||
"59":"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":"y",
|
||||
"10.1":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":1.46,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+306
@@ -0,0 +1,306 @@
|
||||
{
|
||||
"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":"http://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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"a x #1",
|
||||
"11":"a x #1"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n d"
|
||||
}
|
||||
},
|
||||
"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":9.69,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"viewport",
|
||||
"ie_id":"",
|
||||
"chrome_id":"4737164243894272",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+305
@@ -0,0 +1,305 @@
|
||||
{
|
||||
"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":"Mozilla Developer Network article"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":6.57,
|
||||
"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
|
||||
}
|
||||
+290
@@ -0,0 +1,290 @@
|
||||
{
|
||||
"title":"CSS element() function",
|
||||
"description":"This function renders a live image generated from an arbitrary HTML element",
|
||||
"spec":"http://www.w3.org/TR/css4-images/#element-notation",
|
||||
"status":"wd",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/element",
|
||||
"title":"MDN page"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y x"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"In Firefox < 4, usage limited to the background and background-image CSS properties"
|
||||
},
|
||||
"usage_perc_y":6.69,
|
||||
"usage_perc_a":0.07,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"element, function",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+293
@@ -0,0 +1,293 @@
|
||||
{
|
||||
"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":"http://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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y x",
|
||||
"11":"y x"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":6.25,
|
||||
"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
|
||||
}
|
||||
+302
@@ -0,0 +1,302 @@
|
||||
{
|
||||
"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":"http://www.w3.org/TR/css3-conditional/#at-supports",
|
||||
"status":"cr",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/@supports",
|
||||
"title":"MDN Article"
|
||||
},
|
||||
{
|
||||
"url":"http://mcc.id.au/blog/2012/08/supports",
|
||||
"title":"@supports in Firefox"
|
||||
},
|
||||
{
|
||||
"url":"http://dabblet.com/gist/3895764",
|
||||
"title":"Test case"
|
||||
},
|
||||
{
|
||||
"url":"http://docs.webplatform.org/wiki/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](http://crbug.com/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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"See also the [CSS.supports() DOM API](#feat=css-supports-api)",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":81.84,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"supports,conditional",
|
||||
"ie_id":"conditionalrules",
|
||||
"chrome_id":"4993981813358592",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+288
@@ -0,0 +1,288 @@
|
||||
{
|
||||
"title":"CSS filter() function",
|
||||
"description":"This function filters a CSS input image with a set of filter functions (like blur, grayscale or hue)",
|
||||
"spec":"http://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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":11.52,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"filter, function",
|
||||
"ie_id":"cssfilterimagefunction",
|
||||
"chrome_id":"5425136400334848",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+301
@@ -0,0 +1,301 @@
|
||||
{
|
||||
"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":"http://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":"http://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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y x"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y x"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":86.29,
|
||||
"usage_perc_a":2,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"sepia,hue-rotate,invert,saturate,filter:blur",
|
||||
"ie_id":"filters",
|
||||
"chrome_id":"5822463824887808",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+293
@@ -0,0 +1,293 @@
|
||||
{
|
||||
"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":"http://www.w3.org/TR/css3-selectors/#first-letter",
|
||||
"status":"rec",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/::first-letter",
|
||||
"title":"Mozilla Developer Network"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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.65,
|
||||
"usage_perc_a":0.6,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"first,letter,pseudo,element,class,selector",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+289
@@ -0,0 +1,289 @@
|
||||
{
|
||||
"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 article"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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.86,
|
||||
"usage_perc_a":0.48,
|
||||
"ucprefix":false,
|
||||
"parent":"css-sel3",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+300
@@ -0,0 +1,300 @@
|
||||
{
|
||||
"title":"CSS position:fixed",
|
||||
"description":"Method of keeping an element in a fixed location regardless of scroll position",
|
||||
"spec":"http://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":"http://docs.webplatform.org/wiki/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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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)."
|
||||
},
|
||||
"usage_perc_y":94.63,
|
||||
"usage_perc_a":0.24,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+313
@@ -0,0 +1,313 @@
|
||||
{
|
||||
"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":"Mozilla Developer Network 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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":0.03,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"focus,within,focus-within,pseudo",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+294
@@ -0,0 +1,294 @@
|
||||
{
|
||||
"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 article"
|
||||
},
|
||||
{
|
||||
"url":"https://css-tricks.com/font-display-masses/",
|
||||
"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":"n",
|
||||
"13":"n",
|
||||
"14":"n",
|
||||
"15":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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 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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"n d #1"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n d #1"
|
||||
}
|
||||
},
|
||||
"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":0,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"4799947908055040",
|
||||
"firefox_id":"css-font-display",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+289
@@ -0,0 +1,289 @@
|
||||
{
|
||||
"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":"http://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 article"
|
||||
},
|
||||
{
|
||||
"url":"http://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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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":"y",
|
||||
"36":"y",
|
||||
"37":"y",
|
||||
"38":"y",
|
||||
"39":"y",
|
||||
"40":"y",
|
||||
"41":"y",
|
||||
"42":"y",
|
||||
"43":"y",
|
||||
"44":"y",
|
||||
"45":"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":64.65,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"font stretch",
|
||||
"ie_id":"cssfontstretch",
|
||||
"chrome_id":"4598830058176512",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+302
@@ -0,0 +1,302 @@
|
||||
{
|
||||
"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":"http://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":"http://docs.webplatform.org/wiki/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 does 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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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.86,
|
||||
"usage_perc_a":0.42,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"before,after",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+297
@@ -0,0 +1,297 @@
|
||||
{
|
||||
"title":"CSS Gradients",
|
||||
"description":"Method of defining a linear or radial color gradient as a CSS image.",
|
||||
"spec":"http://www.w3.org/TR/css3-images/",
|
||||
"status":"cr",
|
||||
"links":[
|
||||
{
|
||||
"url":"http://www.colorzilla.com/gradient-editor/",
|
||||
"title":"Cross-browser editor"
|
||||
},
|
||||
{
|
||||
"url":"http://www.css3files.com/gradient/",
|
||||
"title":"Information page"
|
||||
},
|
||||
{
|
||||
"url":"http://css3pie.com/",
|
||||
"title":"Tool to emulate support in IE"
|
||||
},
|
||||
{
|
||||
"url":"http://docs.webplatform.org/wiki/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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y x"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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":93.9,
|
||||
"usage_perc_a":0.14,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"linear,linear-gradient,gradiant",
|
||||
"ie_id":"gradients",
|
||||
"chrome_id":"5785905063264256",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+303
@@ -0,0 +1,303 @@
|
||||
{
|
||||
"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 lay out into columns and rows using a set of predictable sizing behaviors",
|
||||
"spec":"http://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"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"y",
|
||||
"54":"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",
|
||||
"58":"y",
|
||||
"59":"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"p"
|
||||
},
|
||||
"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":{
|
||||
"56":"p"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"p"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"a x #2",
|
||||
"11":"a x #2"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"p"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"p d #1"
|
||||
}
|
||||
},
|
||||
"notes":"Supported in WebKit Nightly with `-webkit-` prefix.",
|
||||
"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](http://www.w3.org/TR/2011/WD-css3-grid-layout-20110407/) of the specification.",
|
||||
"3":"Enabled in Firefox through the `layout.css.grid.enabled ` flag"
|
||||
},
|
||||
"usage_perc_y":0.1,
|
||||
"usage_perc_a":6.25,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"grids,grid-row,grid-column,display:grid",
|
||||
"ie_id":"grid",
|
||||
"chrome_id":"4589636412243968",
|
||||
"firefox_id":"grid-layout",
|
||||
"webkit_id":"specification-css-grid-layout-level-1",
|
||||
"shown":true
|
||||
}
|
||||
+289
@@ -0,0 +1,289 @@
|
||||
{
|
||||
"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":"unoff",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/:has",
|
||||
"title":":has() on MDN"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"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
|
||||
}
|
||||
+297
@@ -0,0 +1,297 @@
|
||||
{
|
||||
"title":"CSS Hyphenation",
|
||||
"description":"Method of controlling when words at the end of lines should be hyphenated using the \"hyphens\" property.",
|
||||
"spec":"http://www.w3.org/TR/css3-text/#hyphenation",
|
||||
"status":"wd",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en/CSS/hyphens",
|
||||
"title":"MDN article"
|
||||
},
|
||||
{
|
||||
"url":"http://blog.fontdeck.com/post/9037028497/hyphens",
|
||||
"title":"Blog post"
|
||||
},
|
||||
{
|
||||
"url":"http://docs.webplatform.org/wiki/css/properties/hyphens",
|
||||
"title":"WebPlatform Docs"
|
||||
},
|
||||
{
|
||||
"url":"https://crbug.com/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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"a #1"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"a x"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"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 supports the \"auto\" value [on Mac for now](https://crrev.com/ed7e106e0e48b3afb160a5bdbb37649e307d2b05)."
|
||||
},
|
||||
"usage_perc_y":24.69,
|
||||
"usage_perc_a":57.11,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"hyphen,shy",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+295
@@ -0,0 +1,295 @@
|
||||
{
|
||||
"title":"CSS3 image-orientation",
|
||||
"description":"CSS property used generally to fix the intended orientation of an image. This can be done using 90 degree increments or based on the image's EXIF data using the \"from-image\" value.",
|
||||
"spec":"http://www.w3.org/TR/css3-images/#image-orientation",
|
||||
"status":"cr",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/image-orientation",
|
||||
"title":"MDN article"
|
||||
},
|
||||
{
|
||||
"url":"http://sethfowler.org/blog/2013/09/13/new-in-firefox-26-css-image-orientation/",
|
||||
"title":"Blog post"
|
||||
},
|
||||
{
|
||||
"url":"http://jsbin.com/EXUTolo/4",
|
||||
"title":"Demo (Chinese)"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
{
|
||||
"description":"Negative values do not work in Firefox."
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"ios_saf":{
|
||||
"3.2":"a #1",
|
||||
"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":"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",
|
||||
"53":"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":{
|
||||
"56":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"Opening the image in a new tab in Chrome results in the image shown in the orientation according to the EXIF data.",
|
||||
"notes_by_num":{
|
||||
"1":"Partial support in iOS refers to the browser using EXIF data by default, though it does not actually support the property."
|
||||
},
|
||||
"usage_perc_y":6.43,
|
||||
"usage_perc_a":9.96,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"image-orientation,from-image,flip",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+289
@@ -0,0 +1,289 @@
|
||||
{
|
||||
"title":"CSS image-set",
|
||||
"description":"Method of letting the browser pick the most appropriate CSS background image from a given set, primarily for high PPI screens.",
|
||||
"spec":"http://dev.w3.org/csswg/css-images-3/#image-set-notation",
|
||||
"status":"unoff",
|
||||
"links":[
|
||||
{
|
||||
"url":"http://cloudfour.com/examples/image-set/",
|
||||
"title":"Demo"
|
||||
},
|
||||
{
|
||||
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/6606738-image-set",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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":"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"y x"
|
||||
},
|
||||
"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":{
|
||||
"56":"y x"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y x"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y x"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y x"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":79.95,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"cssimageset",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+291
@@ -0,0 +1,291 @@
|
||||
{
|
||||
"title":":in-range and :out-of-range CSS pseudo-classes",
|
||||
"description":"If a temporal or number `<input>` has `max` and/or `min` attributes, then `:in-range` matches when the value is within the specified range and `:out-of-range` matches when the value is outside the specified range. If there are no range constraints, then neither pseudo-class matches.",
|
||||
"spec":"http://www.w3.org/TR/selectors4/#range-pseudos",
|
||||
"status":"wd",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/:out-of-range",
|
||||
"title":"MDN article"
|
||||
},
|
||||
{
|
||||
"url":"https://html.spec.whatwg.org/multipage/scripting.html#selector-in-range",
|
||||
"title":"WHATWG HTML specification for `:in-range` and `:out-of-range`"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
|
||||
],
|
||||
"categories":[
|
||||
"CSS"
|
||||
],
|
||||
"stats":{
|
||||
"ie":{
|
||||
"5.5":"n",
|
||||
"6":"n",
|
||||
"7":"n",
|
||||
"8":"n",
|
||||
"9":"n",
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"edge":{
|
||||
"12":"n",
|
||||
"13":"a #2",
|
||||
"14":"a #2",
|
||||
"15":"a #2"
|
||||
},
|
||||
"firefox":{
|
||||
"2":"n",
|
||||
"3":"n",
|
||||
"3.5":"n",
|
||||
"3.6":"n",
|
||||
"4":"n",
|
||||
"5":"n",
|
||||
"6":"n",
|
||||
"7":"n",
|
||||
"8":"n",
|
||||
"9":"n",
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"12":"n",
|
||||
"13":"n",
|
||||
"14":"n",
|
||||
"15":"n",
|
||||
"16":"n",
|
||||
"17":"n",
|
||||
"18":"n",
|
||||
"19":"n",
|
||||
"20":"n",
|
||||
"21":"n",
|
||||
"22":"n",
|
||||
"23":"n",
|
||||
"24":"n",
|
||||
"25":"n",
|
||||
"26":"n",
|
||||
"27":"n",
|
||||
"28":"n",
|
||||
"29":"a #3",
|
||||
"30":"a #3",
|
||||
"31":"a #3",
|
||||
"32":"a #3",
|
||||
"33":"a #3",
|
||||
"34":"a #3",
|
||||
"35":"a #3",
|
||||
"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 #3",
|
||||
"46":"a #3",
|
||||
"47":"a #3",
|
||||
"48":"a #3",
|
||||
"49":"a #3",
|
||||
"50":"y",
|
||||
"51":"y",
|
||||
"52":"y",
|
||||
"53":"y",
|
||||
"54":"y"
|
||||
},
|
||||
"chrome":{
|
||||
"4":"n",
|
||||
"5":"u",
|
||||
"6":"u",
|
||||
"7":"u",
|
||||
"8":"u",
|
||||
"9":"u",
|
||||
"10":"u",
|
||||
"11":"u",
|
||||
"12":"u",
|
||||
"13":"u",
|
||||
"14":"u",
|
||||
"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 #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 #2 #3",
|
||||
"42":"a #2 #3",
|
||||
"43":"a #2 #3",
|
||||
"44":"a #2 #3",
|
||||
"45":"a #2 #3",
|
||||
"46":"a #2 #3",
|
||||
"47":"a #2 #3",
|
||||
"48":"a #2 #3",
|
||||
"49":"a #2 #3",
|
||||
"50":"a #2 #3",
|
||||
"51":"a #2 #3",
|
||||
"52":"a #2",
|
||||
"53":"y",
|
||||
"54":"y",
|
||||
"55":"y",
|
||||
"56":"y",
|
||||
"57":"y",
|
||||
"58":"y",
|
||||
"59":"y"
|
||||
},
|
||||
"safari":{
|
||||
"3.1":"n",
|
||||
"3.2":"n",
|
||||
"4":"n",
|
||||
"5":"u",
|
||||
"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":"a #2 #3",
|
||||
"10.1":"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":"a #2",
|
||||
"12":"a #2",
|
||||
"12.1":"a #2",
|
||||
"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 #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",
|
||||
"40":"y",
|
||||
"41":"y",
|
||||
"42":"y",
|
||||
"43":"y",
|
||||
"44":"y",
|
||||
"45":"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"
|
||||
},
|
||||
"op_mini":{
|
||||
"all":"a #1"
|
||||
},
|
||||
"android":{
|
||||
"2.1":"n",
|
||||
"2.2":"n",
|
||||
"2.3":"n",
|
||||
"3":"n",
|
||||
"4":"a #2",
|
||||
"4.1":"a #2",
|
||||
"4.2-4.3":"a #2",
|
||||
"4.4":"a #2",
|
||||
"4.4.3-4.4.4":"a #2",
|
||||
"53":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"n",
|
||||
"10":"a #2"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"a #2",
|
||||
"11":"a #2",
|
||||
"11.1":"a #2",
|
||||
"11.5":"a #2",
|
||||
"12":"a #2",
|
||||
"12.1":"a #2",
|
||||
"37":"a #2"
|
||||
},
|
||||
"and_chr":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"a #2"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"a #2"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"Note that `<input type=\"range\">` can never match `:out-of-range` because the user cannot input such a value, and if the initial value is outside the range, the browser immediately clamps it to the minimum or maximum (as appropriate) bound of the range.",
|
||||
"notes_by_num":{
|
||||
"1":"Opera Mini correctly applies style on initial load, but does not correctly update when value is changed.",
|
||||
"2":"`:in-range` also incorrectly matches temporal and `number` inputs which don't have `min` or `max` attributes. See [Edge bug](https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/7200501/), [Chrome bug](https://bugs.chromium.org/p/chromium/issues/detail?id=603268), [WebKit bug](https://bugs.webkit.org/show_bug.cgi?id=156558).",
|
||||
"3":"`:in-range` and `:out-of-range` incorrectly match inputs which are disabled or readonly. See [Edge bug](https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/7190958/), [Mozilla bug](https://bugzilla.mozilla.org/show_bug.cgi?id=1264157), [WebKit bug](https://bugs.webkit.org/show_bug.cgi?id=156530), [Chrome bug](https://bugs.chromium.org/p/chromium/issues/detail?id=602568)."
|
||||
},
|
||||
"usage_perc_y":54,
|
||||
"usage_perc_a":38.38,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"in,out,of,range,:in-range,:out-of-range",
|
||||
"ie_id":"cssrangepseudoclasses",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+307
@@ -0,0 +1,307 @@
|
||||
{
|
||||
"title":":indeterminate CSS pseudo-class",
|
||||
"description":"The `:indeterminate` pseudo-class matches indeterminate checkboxes, indeterminate `<progress>` bars, and radio buttons with no checked button in their radio button group.",
|
||||
"spec":"https://drafts.csswg.org/selectors-4/#indeterminate",
|
||||
"status":"unoff",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://html.spec.whatwg.org/multipage/scripting.html#selector-indeterminate",
|
||||
"title":"HTML specification for `:indeterminate`"
|
||||
},
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/:indeterminate",
|
||||
"title":"Mozilla Developer Network article"
|
||||
},
|
||||
{
|
||||
"url":"https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/7124038/",
|
||||
"title":"EdgeHTML issue 7124038 - `:indeterminate` pseudo-class doesn't match radio buttons"
|
||||
},
|
||||
{
|
||||
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=885359",
|
||||
"title":"Mozilla Bug 885359 - Radio groups without a selected radio button should have `:indeterminate` applying"
|
||||
},
|
||||
{
|
||||
"url":"https://bugs.webkit.org/show_bug.cgi?id=156270",
|
||||
"title":"WebKit Bug 156270 - `:indeterminate` pseudo-class should match radios whose group has no checked radio"
|
||||
},
|
||||
{
|
||||
"url":"http://jsbin.com/zumoqu/edit?html,css,js,output",
|
||||
"title":"JS Bin testcase"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
|
||||
],
|
||||
"categories":[
|
||||
"CSS"
|
||||
],
|
||||
"stats":{
|
||||
"ie":{
|
||||
"5.5":"n",
|
||||
"6":"n",
|
||||
"7":"n",
|
||||
"8":"n",
|
||||
"9":"a #1 #2",
|
||||
"10":"a #1",
|
||||
"11":"a #1"
|
||||
},
|
||||
"edge":{
|
||||
"12":"a #1",
|
||||
"13":"a #1",
|
||||
"14":"a #1",
|
||||
"15":"a #1"
|
||||
},
|
||||
"firefox":{
|
||||
"2":"u",
|
||||
"3":"u",
|
||||
"3.5":"u",
|
||||
"3.6":"u",
|
||||
"4":"a #1 #2",
|
||||
"5":"a #1 #2",
|
||||
"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",
|
||||
"48":"a #1",
|
||||
"49":"a #1",
|
||||
"50":"a #1",
|
||||
"51":"y",
|
||||
"52":"y",
|
||||
"53":"y",
|
||||
"54":"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":"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"
|
||||
},
|
||||
"safari":{
|
||||
"3.1":"u",
|
||||
"3.2":"u",
|
||||
"4":"u",
|
||||
"5":"u",
|
||||
"5.1":"a #1 #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":"a #1",
|
||||
"10.1":"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 #3",
|
||||
"12":"a #3",
|
||||
"12.1":"a #3",
|
||||
"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":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"op_mini":{
|
||||
"all":"a #3"
|
||||
},
|
||||
"android":{
|
||||
"2.1":"u",
|
||||
"2.2":"u",
|
||||
"2.3":"u",
|
||||
"3":"u",
|
||||
"4":"a #1 #2",
|
||||
"4.1":"a #1 #2",
|
||||
"4.2-4.3":"a #1 #2",
|
||||
"4.4":"a #1",
|
||||
"4.4.3-4.4.4":"u",
|
||||
"53":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"u",
|
||||
"10":"a #1"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"u",
|
||||
"11":"u",
|
||||
"11.1":"u",
|
||||
"11.5":"u",
|
||||
"12":"u",
|
||||
"12.1":"a #3",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"a #1"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"a #1",
|
||||
"11":"a #1"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Doesn't match radio buttons whose radio button group lacks a checked radio button",
|
||||
"2":"Doesn't support the `<progress>` element",
|
||||
"3":"Doesn't match indeterminate `<progress>` bars"
|
||||
},
|
||||
"usage_perc_y":65.76,
|
||||
"usage_perc_a":31.07,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":":indeterminate,indeterminate",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+299
@@ -0,0 +1,299 @@
|
||||
{
|
||||
"title":"CSS Initial Letter",
|
||||
"description":"Method of creating an enlarged cap, including a drop or raised cap, in a robust way.",
|
||||
"spec":"https://www.w3.org/TR/css-inline/#initial-letter-styling",
|
||||
"status":"wd",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=1223880",
|
||||
"title":"Firefox Implementation Ticket"
|
||||
},
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/initial-letter",
|
||||
"title":"MDN"
|
||||
},
|
||||
{
|
||||
"url":"https://webdesign.tutsplus.com/tutorials/better-css-drop-caps-with-initial-letter--cms-26350",
|
||||
"title":"Blog post on Envato Tuts+, \"Better CSS Drop Caps With initial-letter\""
|
||||
},
|
||||
{
|
||||
"url":"http://labs.jensimmons.com/#initialletter",
|
||||
"title":"Demos at Jen Simmons Labs"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
{
|
||||
"description":"Safari 9 doesn't properly shorten the first line of text. Applying `margin-top: 1em` to the letter fixes this problem."
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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":"a",
|
||||
"9.1":"a x #1",
|
||||
"10":"a x #1",
|
||||
"10.1":"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":"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"
|
||||
},
|
||||
"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 x #1",
|
||||
"9.3":"a x #1",
|
||||
"10.0-10.2":"a x #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",
|
||||
"53":"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":{
|
||||
"56":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"Firefox status: [in-development](https://bugzilla.mozilla.org/show_bug.cgi?id=1223880)",
|
||||
"notes_by_num":{
|
||||
"1":"Safari implementation is incomplete. Does not allow applying web fonts to the initial letter."
|
||||
},
|
||||
"usage_perc_y":0,
|
||||
"usage_perc_a":11.52,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"initial-letter,initial letter,letter,drop cap,dropcap",
|
||||
"ie_id":"initialletter",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+289
@@ -0,0 +1,289 @@
|
||||
{
|
||||
"title":"CSS initial value",
|
||||
"description":"A CSS value that will apply a property's initial value as defined in the CSS specification that defines the property",
|
||||
"spec":"http://www.w3.org/TR/css-values/#common-keywords",
|
||||
"status":"cr",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/initial",
|
||||
"title":"Mozilla Developer Network"
|
||||
},
|
||||
{
|
||||
"url":"https://css-tricks.com/getting-acquainted-with-initial/",
|
||||
"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":"y",
|
||||
"13":"y",
|
||||
"14":"y",
|
||||
"15":"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":"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"safari":{
|
||||
"3.1":"u",
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"op_mini":{
|
||||
"all":"n"
|
||||
},
|
||||
"android":{
|
||||
"2.1":"u",
|
||||
"2.2":"u",
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":89.16,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"CSS,initial,value",
|
||||
"ie_id":"cssinitialvalue",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+285
@@ -0,0 +1,285 @@
|
||||
{
|
||||
"title":"letter-spacing CSS property",
|
||||
"description":"Controls spacing between characters of text (i.e. \"tracking\" in typographical terms). Not to be confused with kerning.",
|
||||
"spec":"http://www.w3.org/TR/CSS2/text.html#propdef-letter-spacing",
|
||||
"status":"rec",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/letter-spacing",
|
||||
"title":"Mozilla Developer Network"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
|
||||
],
|
||||
"categories":[
|
||||
"CSS"
|
||||
],
|
||||
"stats":{
|
||||
"ie":{
|
||||
"5.5":"u",
|
||||
"6":"a #1",
|
||||
"7":"a #1",
|
||||
"8":"a #1",
|
||||
"9":"y",
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"edge":{
|
||||
"12":"y",
|
||||
"13":"y",
|
||||
"14":"y",
|
||||
"15":"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"
|
||||
},
|
||||
"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":"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":"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"
|
||||
},
|
||||
"safari":{
|
||||
"3.1":"u",
|
||||
"3.2":"a #1",
|
||||
"4":"a #1",
|
||||
"5":"a #1",
|
||||
"5.1":"a #1",
|
||||
"6":"a #1",
|
||||
"6.1":"y",
|
||||
"7":"y",
|
||||
"7.1":"y",
|
||||
"8":"y",
|
||||
"9":"y",
|
||||
"9.1":"y",
|
||||
"10":"y",
|
||||
"10.1":"y",
|
||||
"TP":"y"
|
||||
},
|
||||
"opera":{
|
||||
"9":"u",
|
||||
"9.5-9.6":"u",
|
||||
"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",
|
||||
"12":"a #1",
|
||||
"12.1":"a #1",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"op_mini":{
|
||||
"all":"n"
|
||||
},
|
||||
"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",
|
||||
"53":"y"
|
||||
},
|
||||
"bb":{
|
||||
"7":"a #1",
|
||||
"10":"a #1"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"a #1",
|
||||
"11":"a #1",
|
||||
"11.1":"a #1",
|
||||
"11.5":"a #1",
|
||||
"12":"a #1",
|
||||
"12.1":"a #1",
|
||||
"37":"y"
|
||||
},
|
||||
"and_chr":{
|
||||
"56":"y"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"y"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"y",
|
||||
"11":"y"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Truncates or rounds fractional portions of values"
|
||||
},
|
||||
"usage_perc_y":93.01,
|
||||
"usage_perc_a":1.87,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"CSS,letter,spacing,tracking",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+289
@@ -0,0 +1,289 @@
|
||||
{
|
||||
"title":"CSS line-clamp",
|
||||
"description":"Proprietary and undocumented CSS property that will contain text to a given amount of lines when used in combination with `display: -webkit-box`. It will end with ellipsis when `text-overflow: ellipsis` is included.",
|
||||
"spec":"https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariCSSRef/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-WebKit_SpecificUnsupportedProperties",
|
||||
"status":"unoff",
|
||||
"links":[
|
||||
{
|
||||
"url":"http://guerillalabs.co/blog/css-line-clamping.html",
|
||||
"title":"Article on cross-browser CSS line clamping"
|
||||
},
|
||||
{
|
||||
"url":"https://css-tricks.com/line-clampin/",
|
||||
"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":"n",
|
||||
"13":"n",
|
||||
"14":"n",
|
||||
"15":"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"
|
||||
},
|
||||
"chrome":{
|
||||
"4":"u",
|
||||
"5":"u",
|
||||
"6":"u",
|
||||
"7":"u",
|
||||
"8":"u",
|
||||
"9":"u",
|
||||
"10":"u",
|
||||
"11":"u",
|
||||
"12":"u",
|
||||
"13":"u",
|
||||
"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"
|
||||
},
|
||||
"safari":{
|
||||
"3.1":"n",
|
||||
"3.2":"n",
|
||||
"4":"n",
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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 x"
|
||||
},
|
||||
"op_mini":{
|
||||
"all":"n"
|
||||
},
|
||||
"android":{
|
||||
"2.1":"u",
|
||||
"2.2":"u",
|
||||
"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",
|
||||
"53":"y x"
|
||||
},
|
||||
"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":"y x"
|
||||
},
|
||||
"and_chr":{
|
||||
"56":"y x"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"y x"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"y x"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"y x"
|
||||
}
|
||||
},
|
||||
"notes":"As there is no specification and the property is dependent on an outdated implementation of flexbox (hence `display: -webkit-box`) it is unlikely that other browsers will support the property as-is, although an alternative solution may at some point replace it.\r\n\r\nOlder (presto-based) versions of the Opera browser have also supported the same effect using the proprietary `-o-ellipsis-lastline;` value for `text-overflow`.",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":80.89,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"ie_id":"",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+295
@@ -0,0 +1,295 @@
|
||||
{
|
||||
"title":"CSS Logical Properties",
|
||||
"description":"Use start/end properties that depend on LTR or RTL writing direction instead of left/right",
|
||||
"spec":"http://dev.w3.org/csswg/css-logical-props/",
|
||||
"status":"unoff",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/-moz-margin-start",
|
||||
"title":"MDN -moz-margin-start"
|
||||
},
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/-moz-padding-start",
|
||||
"title":"MDN -moz-padding-start"
|
||||
},
|
||||
{
|
||||
"url":"https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/7438435-css-logical-properties",
|
||||
"title":"Microsoft Edge feature request on UserVoice"
|
||||
}
|
||||
],
|
||||
"bugs":[
|
||||
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"firefox":{
|
||||
"2":"n",
|
||||
"3":"a x #1",
|
||||
"3.5":"a x #1",
|
||||
"3.6":"a x #1",
|
||||
"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"
|
||||
},
|
||||
"chrome":{
|
||||
"4":"a x #2",
|
||||
"5":"a x #2",
|
||||
"6":"a x #2",
|
||||
"7":"a x #2",
|
||||
"8":"a x #2",
|
||||
"9":"a x #2",
|
||||
"10":"a x #2",
|
||||
"11":"a x #2",
|
||||
"12":"a x #2",
|
||||
"13":"a x #2",
|
||||
"14":"a x #2",
|
||||
"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 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 x #2",
|
||||
"56":"a x #2",
|
||||
"57":"a x #2",
|
||||
"58":"a x #2",
|
||||
"59":"a x #2"
|
||||
},
|
||||
"safari":{
|
||||
"3.1":"a x #2",
|
||||
"3.2":"a x #2",
|
||||
"4":"a x #2",
|
||||
"5":"a x #2",
|
||||
"5.1":"a x #2",
|
||||
"6":"a x #2",
|
||||
"6.1":"a x #2",
|
||||
"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",
|
||||
"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 x #2",
|
||||
"43":"a x #2",
|
||||
"44":"a x #2",
|
||||
"45":"a x #2"
|
||||
},
|
||||
"ios_saf":{
|
||||
"3.2":"a x #2",
|
||||
"4.0-4.1":"a x #2",
|
||||
"4.2-4.3":"a x #2",
|
||||
"5.0-5.1":"a x #2",
|
||||
"6.0-6.1":"a x #2",
|
||||
"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"
|
||||
},
|
||||
"op_mini":{
|
||||
"all":"n"
|
||||
},
|
||||
"android":{
|
||||
"2.1":"a x #2",
|
||||
"2.2":"a x #2",
|
||||
"2.3":"a x #2",
|
||||
"3":"a x #2",
|
||||
"4":"a x #2",
|
||||
"4.1":"a x #2",
|
||||
"4.2-4.3":"a x #2",
|
||||
"4.4":"a x #2",
|
||||
"4.4.3-4.4.4":"a x #2",
|
||||
"53":"a x #2"
|
||||
},
|
||||
"bb":{
|
||||
"7":"a x #2",
|
||||
"10":"a x #2"
|
||||
},
|
||||
"op_mob":{
|
||||
"10":"n",
|
||||
"11":"n",
|
||||
"11.1":"n",
|
||||
"11.5":"n",
|
||||
"12":"n",
|
||||
"12.1":"n",
|
||||
"37":"a x #2"
|
||||
},
|
||||
"and_chr":{
|
||||
"56":"a x #2"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"a x #1"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"a x #2"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"a x #2"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"a x #2"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
"1":"Only supports the *-start, and *-end values for `margin`, `border` and `padding`, not the inline/block type values as defined in the spec.",
|
||||
"2":"Like #1 but also supports `*-before` and `*-end` for `*-block-start` and `*-block-end` properties as well as `start` and `end` values for `text-align`"
|
||||
},
|
||||
"usage_perc_y":0,
|
||||
"usage_perc_a":87.72,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"margin-start,margin-end,padding-start,padding-end,border-start,border-end,inline-start,inline-end,block-start,block-end,block-size,inline-size",
|
||||
"ie_id":"csslogicalpropertieslevel1",
|
||||
"chrome_id":"",
|
||||
"firefox_id":"",
|
||||
"webkit_id":"",
|
||||
"shown":true
|
||||
}
|
||||
+305
@@ -0,0 +1,305 @@
|
||||
{
|
||||
"title":"CSS ::marker pseudo-element",
|
||||
"description":"The `::marker` pseudo-element allows list item markers to be styled or have their content value customized.",
|
||||
"spec":"https://drafts.csswg.org/css-lists-3/#marker-pseudo-element",
|
||||
"status":"wd",
|
||||
"links":[
|
||||
{
|
||||
"url":"https://crbug.com/457718",
|
||||
"title":"Chrome support bug"
|
||||
},
|
||||
{
|
||||
"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=205202",
|
||||
"title":"Firefox support bug"
|
||||
},
|
||||
{
|
||||
"url":"https://bugs.webkit.org/show_bug.cgi?id=141477",
|
||||
"title":"WebKit support bug"
|
||||
},
|
||||
{
|
||||
"url":"https://wpdev.uservoice.com/forums/257854-internet-explorer-platform/suggestions/7084750-css-3-marker-pseudo-element",
|
||||
"title":"Edge UserVoice request"
|
||||
},
|
||||
{
|
||||
"url":"https://developer.mozilla.org/en-US/docs/Web/CSS/::marker",
|
||||
"title":"MDN article"
|
||||
},
|
||||
{
|
||||
"url":"https://css-tricks.com/almanac/selectors/m/marker/",
|
||||
"title":"CSS-Tricks article"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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",
|
||||
"53":"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":{
|
||||
"56":"n"
|
||||
},
|
||||
"and_ff":{
|
||||
"51":"n"
|
||||
},
|
||||
"ie_mob":{
|
||||
"10":"n",
|
||||
"11":"n"
|
||||
},
|
||||
"and_uc":{
|
||||
"11":"n"
|
||||
},
|
||||
"samsung":{
|
||||
"4":"n"
|
||||
},
|
||||
"and_qq":{
|
||||
"1.2":"n"
|
||||
}
|
||||
},
|
||||
"notes":"",
|
||||
"notes_by_num":{
|
||||
|
||||
},
|
||||
"usage_perc_y":0,
|
||||
"usage_perc_a":0,
|
||||
"ucprefix":false,
|
||||
"parent":"",
|
||||
"keywords":"",
|
||||
"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