Skip to content

Commit

Permalink
Fix #269
Browse files Browse the repository at this point in the history
  • Loading branch information
zenorocha committed Sep 14, 2013
1 parent 06d5f3e commit 4bdd1ba
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions posts/es6.md
Expand Up @@ -2,6 +2,7 @@ feature: ECMAScript 6
status: avoid
tags: es6
kind: js
moreurl: http://www.2ality.com/2013/07/es6-modules.html

ECMAScript version 6 is the upcoming version of JavaScript that brings new features and heavy syntax changes. Currently only Chrome(17+) and Firefox support a highly experimental subset of ES6 features.

Expand Down
1 change: 1 addition & 0 deletions posts/iframe-seamless.md
Expand Up @@ -3,6 +3,7 @@ status: caution
tags: none
kind: html
polyfillurls:
moreurl: http://weblog.bocoup.com/third-party-javascript-development-future/#iframe-seamless

This attribute instructs browsers to treat the iFrame's content more like inline markup than it would otherwise. Specifically, this means:

Expand Down
1 change: 1 addition & 0 deletions posts/iframe-srcdoc.md
Expand Up @@ -3,6 +3,7 @@ status: use
tags: polyfill
kind: html
polyfillurls:[srcdoc polyfill](https://github.com/jugglinmike/srcdoc-polyfill)
moreurl: http://weblog.bocoup.com/third-party-javascript-development-future/#iframe-srcdoc

This attribute allows for in-line specification of iframe content.

Expand Down
1 change: 1 addition & 0 deletions posts/input-search.md
Expand Up @@ -2,6 +2,7 @@ feature: <input type=search>
status: use
tags:
kind: html
moreurl: http://www.wufoo.com/html5/types/5-search.html

A [search input](http://wufoo.com/html5/types/5-search.html) will fall back to a plain text input if it's not supported. The standard doesn't specify any behavior for this type, but recommends styling to match the platform's search fields (e.g. with rounded corners on OS X). The style cancels out many CSS styles from being applied, and can be removed with `-webkit-appearance: none;`. The recommendation here is to use `input[type=search]` to enhance your forms, so long as you're okay with the styling difference.

Expand Down
1 change: 1 addition & 0 deletions posts/microdata-domapi.md
Expand Up @@ -3,6 +3,7 @@ status: use
tags: polyfill ie6 gtie6
kind: API
polyfillurls: [microdata shim](https://github.com/termi/Microdata-JS)
moreurl: http://dev.opera.com/articles/view/microdata-and-the-microdata-dom-api/

This comment has been minimized.

Copy link
@arthurvr

arthurvr Feb 28, 2015

Member

Somebody any idea what happened to this post? Currently this is 404'ing.

This comment has been minimized.

Copy link
@alrra

alrra Feb 28, 2015

Member

Somebody any idea what happened to this post? Currently this is 404'ing.

@arthurvr You should open an issue in the Dev.Opera repository.

Cc: @mathiasbynens

This comment has been minimized.

Copy link
@mathiasbynens

mathiasbynens Mar 2, 2015

Member

Thanks. I’ve just restored the article. The new URL is https://dev.opera.com/articles/microdata-and-the-microdata-dom-api/ (although the old one redirects).

This comment has been minimized.

Copy link
@arthurvr

arthurvr Mar 2, 2015

Member

Thank you!


Microdata is a new lightweight semantic meta-syntax. Using attributes, we can define nestable groups of name-value pairs of data, called microdata, which are generally based on the page's content. It gives us a whole new way to add extra semantic information and extend HTML5. Microdata is already being used by google to extract semantic meta data from your webpage.

Expand Down
1 change: 1 addition & 0 deletions posts/ol-reversed.md
Expand Up @@ -3,6 +3,7 @@ status: use
tags: polyfill
kind: html
polyfillurls:[ol reversed polyfill](https://gist.github.com/1671548), [HTML5 reverse ordered lists](https://github.com/impressivewebs/HTML5-Reverse-Ordered-Lists)
moreurl: http://html5doctor.com/ol-element-attributes/#reverse

Please use the below polyfill, as WebKit is the only engine that supports it right now.
Also see [Louis's ol[reversed] post](http://www.impressivewebs.com/reverse-ordered-lists-html5/).
1 change: 1 addition & 0 deletions posts/scoped-css.md
Expand Up @@ -2,5 +2,6 @@ feature: style[scoped]
status: avoid
tags:
kind: css
moreurl: http://css-tricks.com/saving-the-day-with-scoped-css/

[Scoped stylesheets](http://css-tricks.com/saving-the-day-with-scoped-css/) are still in active development. Firefox 21 now includes this feature, but no other major browser currently supports it out-the-box.
1 change: 1 addition & 0 deletions posts/vibration.md
Expand Up @@ -3,6 +3,7 @@ status: avoid
tags: none
kind: api
polyfillurls:
moreurl: https://developer.mozilla.org/en-US/docs/WebAPI/Vibration

Vibration enables web apps access to a supporting device's force feedback motor.

Expand Down
1 change: 1 addition & 0 deletions posts/webcomponents.md
Expand Up @@ -3,6 +3,7 @@ status: caution
tags: polyfill
kind: api
polyfillurls: [Polymer](http://www.polymer-project.org/)
moreurl: http://www.webcomponentsshift.com/

The [Web Components](https://dvcs.w3.org/hg/webcomponents/raw-file/tip/explainer/index.html) API is a collection of four different specs from the W3C designed to work together:

Expand Down

0 comments on commit 4bdd1ba

Please sign in to comment.