Mountain View, California
[I]f you consider the Web as an interconnected set of things, it sometimes looks like a living organism. In a biosphere, you usually don't go with a clear cut. New things grows on the dying and evolving things. Part of the process.
with(navigator) {
Browser=appName;
Version=parseInt(appVersion.charAt(0));
}
if(ua.indexOf('Firefox/3') !=-1) {
type = "mp4";
format = "mp4";
} else if (ua.indexOf('Firefox') !=-1) {
type = "webm";
format = "webm";
}
Firefox/3.0 -> mp4
Firefox/29.0 -> webm
Firefox/30.0 -> mp4
Firefox/39.0 -> mp4
Firefox/40.0 -> webm
Firefox/300.0 -> mp4
if (is_iphone || android) {
var supportsOrientationChange = "onorientationchange" in window,
orientationEvent = supportsOrientationChange ?
"orientationchange" : "resize"
window.addEventListener(orientationEvent, function() {
if (window.orientation != 0)
badOrientation();
}}
window.orientation != 0
undefined != 0
me.definitions.push('function ' + name + '(' + me.fnArgs + ') {',
' try { with(values) {',
' ' + action,
' }} catch(e) {',
'}',
'}');
When `values` is an Array in that WithStatement, any reference to "values" in the body statement would become `values.values`, referring to Array.prototype.values instead of the original object.
var f = someCondition ?
{entries: [{}, {}]} :
[{}, {}];
if (f.entries) {
explodeIfYouDontPassMeAnObject(f);
}
.button {
background:-webkit-gradient(linear,left top,right top,
from(#c5ccd4), color-stop(71%, #c5ccd4),
color-stop(72%, #cbd2d8),to(#cbd2d8));
}
.ChannelListing .crafts{
background-color:#cfb793;
background-image:url(/ui/images/mobile/skins/channel-listing/crafts.png);
background-position-y:8px;
background-position-x:7px;
}