Update browser cheatsheets.

This commit is contained in:
Rico Sta. Cruz 2013-01-25 05:24:06 +08:00
parent 317b6cc5a9
commit d416f83afd
2 changed files with 70 additions and 92 deletions

View File

@ -13,8 +13,10 @@ title: Firefox
* No more support for Mac OSX 10.5 and below * No more support for Mac OSX 10.5 and below
* SVG `FillPaint` and `StrokePaint` * SVG `FillPaint` and `StrokePaint`
* HTML `<iframe sandbox=...>` ([docs][iframe-sandbox]) * HTML `<iframe sandbox=...>` ([docs][iframe-sandbox])
* Official support for Windows 8 ([link][17reqs])
[iframe-sandbox]: https://developer.mozilla.org/en-US/docs/HTML/Element/iframe#attr-sandbox [iframe-sandbox]: https://developer.mozilla.org/en-US/docs/HTML/Element/iframe#attr-sandbox
[17reqs]: http://www.mozilla.org/en-US/firefox/17.0/system-requirements/
### Firefox 16 (Oct 2012) ### Firefox 16 (Oct 2012)

60
ie.md
View File

@ -1,31 +1,25 @@
title: Internet Explorer title: Internet Explorer
--- ---
## Only available in IE7+ ### IE7+ only
Selectors:
* Selectors:
- `>` _(descendant)_ - `>` _(descendant)_
- `[attr]` _(attribute)_ - `[attr]` _(attribute)_
- `.class1.class2` _(multiple classes)_ - `.class1.class2` _(multiple classes)_
- `~` _(sibling)_ - `~` _(sibling)_
* CSS properties:
CSS properties:
- `max-width` - `max-width`
- `position: fixed` - `position: fixed`
## Only available in IE8+ ### IE8+ only
Selectors/pseudos: ([polyfill: selectivizr][selectivizr])
* Selectors/pseudos: ([polyfill: selectivizr][selectivizr])
- `+` _(adjacent)_ - `+` _(adjacent)_
- `:first-child` <sup>1</sup> - `:first-child` <sup>1</sup>
- `:focus` - `:focus`
- `:before`, `:after` _(single colon only)_ - `:before`, `:after` _(single colon only)_
* CSS properties:
CSS properties:
- `outline` - `outline`
- `display: inline-block` <sup>2</sup> - `display: inline-block` <sup>2</sup>
- `display: table` - `display: table`
@ -33,21 +27,16 @@ CSS properties:
- `whitespace: pre-wrap` - `whitespace: pre-wrap`
- `whitespace: pre-line` - `whitespace: pre-line`
- `box-sizing` - `box-sizing`
* Features:
Features:
- PNG alpha transparency - PNG alpha transparency
- `data:` URI - `data:` URI
* JS features:
JS features:
- JSON parsing - JSON parsing
- Cross-origin resource sharing - Cross-origin resource sharing
## Only available in IE9+ ## IE9+ only
Selectors/pseudos: ([polyfill: selectivizr][selectivizr])
* Selectors/pseudos: ([polyfill: selectivizr][selectivizr])
- `:first-of-type`, `:last-of-type` - `:first-of-type`, `:last-of-type`
- `:last-child` - `:last-child`
- `:empty` - `:empty`
@ -58,9 +47,7 @@ Selectors/pseudos: ([polyfill: selectivizr][selectivizr])
- `:only-child()` - `:only-child()`
- `:target` - `:target`
- `::selection` - `::selection`
* CSS properties:
CSS properties:
- `background-clip` - `background-clip`
- `background-origin` - `background-origin`
- `background-size` - `background-size`
@ -70,37 +57,26 @@ CSS properties:
- `box-shadow` - `box-shadow`
- `rgba()` - `rgba()`
- `transform` - `transform`
* CSS features:
CSS features:
- `@media` queries ([polyfill: respond.js][respond]) - `@media` queries ([polyfill: respond.js][respond])
* HTML5 features:
HTML5 features:
- `<canvas>` - `<canvas>`
- `<svg>` - `<svg>`
- `<img src='image.svg'>` - `<img src='image.svg'>`
## Only available in IE10+ ### IE10+ only
CSS features:
* CSS features:
- `animation` - `animation`
- `transition` - `transition`
- `linear-gradient()` - `linear-gradient()`
* HTML features:
Features:
- `<input placeholder='..'>` - `<input placeholder='..'>`
- `<input type='range'>` - `<input type='range'>`
* JS features:
HTML5 features:
- Web sockets - Web sockets
## Not in IE10 (or below) at all ### Not in IE10 (or below) at all
CSS properties:
- `text-shadow` ([polyfill][text-shadow]) - `text-shadow` ([polyfill][text-shadow])