Updated style and layout

This commit is contained in:
Godwin
2015-03-17 20:29:17 -07:00
parent caac48c3c0
commit e476457ea3
356 changed files with 77766 additions and 4248 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,9 @@
@import "../bumbleberry-settings.json";
$markup-settings: (
);
$bug-list: (
"link-focus-outline": none
);
@@ -1,8 +0,0 @@
//@include fontface('AlteHaasGroteskBold', '/assets/AlteHaasGroteskBold', 'alte_haas_groteskbold', ttf, normal, bold);
//body {
// font-family: 'AlteHaasGroteskBold';
//}
//@include breakpoint(medium-only) {
//}
+476
View File
@@ -6,3 +6,479 @@
//@include breakpoint(medium-only) {
//}
@function rems($rems) {
@if capable_of(rem) {
@return $rems * 1rem;
}
@return $rems * 16px;
}
$sidebar-width: rems(19);
$colour-1: #00ADEF;
$colour-2: #FF015B;
$colour-3: #E6C229;
$colour-4: #F17105;
$colour-5: #8EA604;
body {
color: #333;
position: relative;
z-index: -1;
}
@mixin default-box-shadow($direction: top, $distance: 1) {
@if capable_of(box-shadow) {
$offset: 0.2em;
@if $direction == right or $direction == bottom {
$offset: -$offset;
}
@if $direction == left or $direction == right {
$offset: '#{$offset} 0';
} @else {
$offset: '0 #{$offset}';
}
@include _(box-shadow, #{$offset} 0.8em #{-0.2em * $distance} #000);
}
}
h1, h2, h3, h4, h5, label, button {
@include font-family(secondary);
}
h2 {
margin: 0;
font-size: 6vw;
}
p {
font-size: 4vw;
}
a {
text-decoration: none;
color: $colour-1;
border-bottom: 0 solid;
outline: 0;
position: relative;
&:after {
content: '';
position: absolute;
border-bottom: 0 solid;
right: 0;
bottom: 0;
left: 0;
opacity: 0;
@include _(transition, all 150ms ease-in-out);
@include _(transform, translateY(-1em));
}
&:hover:after,
&:active:after,
&:focus:after {
border-bottom: 0.1em solid;
opacity: 1;
transform: translateY(0);
}
}
#main-nav {
position: relative;
top: 0;
left: 0;
width: 100%;
background-color: #FFF;
@include default-box-shadow(top, 2);
z-index: 1;
.nav {
text-align: center;
clear: left;
overflow: auto;
background-color: $colour-3;
a {
position: relative;
display: inline-block;
margin: 0;
padding: 1em 0;
float: left;
@include font-family(secondary);
text-decoration: none;
font-size: 2.25vw;
outline: none;
border: 0;
width: 33.33%;
background-color: $colour-5;
color: #FFF;
text-shadow: 0 0 0.35em #000;
&:after {
display: none;
}
&:nth-child(2) {
background-color: $colour-4;
}
&:nth-child(3) {
background-color: $colour-3;
}
}
}
.actions {
text-align: center;
position: absolute;
top: rems(1.5);
right: rems(1);
}
}
#main {
position: relative;
z-index: -1;
max-width: (rems(68) - $sidebar-width) * 2;
background-color: #FFF;
article {
padding: rems(1) 7.5%;
&.supplementary {
background-color: $colour-3;
@include default-box-shadow(bottom, 2);
}
}
}
a.logo {
display: inline-block;
font-size: rems(5);
text-decoration: none;
padding: 0.1em;
border: 0;
float: left;
@include clearfix;
&:hover:after,
&:active:after,
&:focus:after {
display: none;
}
}
@if capable_of(svg) {
svg.bb-icon-logo {
fill: $colour-1;
@include _(transform, rotate(0));
@include _(transition, transform 500ms ease-in-out);
}
svg.bb-icon-logo-text {
fill: #333;
}
.logo svg {
display: inline-block;
height: 1em;
width: 1em;
float: left;
}
.logo:hover svg.bb-icon-logo {
@include _(transform, rotate(360deg));
}
}
#banner {
clear: left;
figure {
width: 100%;
max-width: rems(60);
margin: 0;
}
img {
width: 100%;
@include default-box-shadow;
}
}
svg {
.colour-1 { fill: $colour-1; }
.colour-2 { fill: $colour-2; }
.colour-3 { fill: $colour-3; }
.colour-4 { fill: $colour-4; }
.colour-5 { fill: $colour-5; }
}
$header-tilt: 8deg;
#header-title {
font-size: 2.25vw;
background-size: cover;
background-position: 50% 20%;
background-repeat: no-repeat;
background-color: $colour-1;
overflow: hidden;
position: relative;
z-index: -1;
svg {
display: none;
position: absolute;
width: 100%;
height: 100%;
}
.title {
position: relative;
padding: 1%;
overflow: hidden;
text-align: center;
@include _(text-shadow, 0 0.2em 0.5em rgba(32, 32, 32, 0.5))
}
.background {
position: absolute;
@include _(transform, rotate($header-tilt));
color: $colour-1;
@include _(opacity, 0.65);
margin: -4% -2%;
@if capable_of(calc) {
font-size: calc(5vw + #{rems(7)});
} @else {
font-size: rems(11);
}
display: none;
}
.details {
position: relative;
display: inline-block;
color: #000;
@include _(text-shadow, 0 0.2em 0.5em rgba(32, 32, 32, 0.75))
}
.primary {
font-size: 2.5em;
margin: 0;
}
.secondary {
font-size: 1.5em;
}
}
@include breakpoint(medium) {
h2 {
font-size: 2.25em;
}
p {
font-size: 1.4em;
}
#banner {
figure {
margin: rems(-20) auto rems(2);
}
}
#main {
clear: right;
}
#main-nav {
height: rems(6);
.nav {
width: 80%;
clear: none;
padding-top: rems(1.5);
background-color: transparent;
overflow: visible;
a {
padding: 0;
float: none;
width: auto;
margin: 0 0.5em 0.75em;
font-size: 1em;
color: #666;
background-color: transparent;
@include _(text-shadow, 0 0.125em 0.25em #888);
&:nth-child(n) {
background-color: transparent;
}
&.current {
color: $colour-1;
}
&:after {
content: '';
display: block;
position: absolute;
bottom: -0.1em;
right: 0;
left: 0;
width: 0;
margin: 0 auto;
opacity: 1;
border-bottom: 0.15em solid;
@include _(box-shadow, 0 0.075em 0.15em #888);
@include _(transition, width 250ms ease-in-out);
@include _(transform, none);
}
&:hover:after,
&:active:after,
&:focus:after {
width: 100%;
}
}
}
.actions {
font-size: 2vw;
}
}
#header-title {
min-height: rems(35);
font-size: 1em;
svg {
display: block;
}
.title {
text-align: left;
width: 110%;
background-color: rgba(#FFF, 0.5);
@include _(transform, rotate(-$header-tilt) translate3d(0, 0, 0));
@include _(transform-origin, 0 100%);
}
.details {
text-align: right;
}
.background {
display: block;
}
.primary {
padding: 12% 0 0 0.25em;
}
}
}
@include breakpoint(large) {
#banner {
figure {
width: 90%;
}
}
#main-nav {
position: fixed;
width: $sidebar-width;
height: 100%;
@include default-box-shadow(left, 2);
.nav {
text-align: left;
padding-top: rems(9);
width: 100%;
a {
font-size: 1.6em;
margin: 0.75em 1em;
}
}
.actions {
position: relative;
top: 0;
right: 0;
font-size: 1em;
}
}
#main {
padding-left: $sidebar-width;
}
a.logo {
display: block;
float: none;
font-size: rems(7.5);
padding: 0.2em;
}
.paypal-button {
margin: 4em 2em 0 0;
}
}
button {
position: relative;
color: #FFF;
background-color: $colour-1;
border: 0;
padding: 0.5em 1em;
font-size: 1.25em;
outline: 0;
border-bottom: 0.125em solid rgba(0, 0, 0, 0.15);
@include _(border-radius, 0.15em);
@include default-box-shadow(top, 2);
overflow: hidden;
cursor: pointer;
&:before,
&:after {
content: '';
position: absolute;
display: block;
top: 0;
right: 100%;
font-size: 1.15em;
background-color: rgba(0, 0, 0, 0);
border-color: transparent;
@include _(transition, all 250ms ease-in-out);
}
&:before {
height: 100%;
width: 100%;
margin-right: 1em;
}
&:after {
border-style: solid;
border-width: 1em 0 1em 1em;
}
&:hover:after,
&:focus:after,
&:hover:before,
&:focus:before {
right: -1em;
border-left-color: rgba(0, 0, 0, 0.15);
}
&:hover:before,
&:focus:before {
background-color: rgba(0, 0, 0, 0.15);
}
&:active {
@include _(transform, scale(0.95));
&:after {
left: 120%;
}
}
}
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome for Android 40 (approximately 10.51% of all users)
*
*/
$browser: and_chr;
$browser_prefix: webkit;
$browser_version: 40;
$browser_type: mobile;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": n,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": n,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": a,
"fileapi": y,
"shadowdom": y,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": n,
"wordwrap": y,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": n,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": y,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": a,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": a,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": y,
"template": y,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": y,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": n,
"css3-cursors-newer": n,
"webvtt": y,
"promises": y,
"css-sticky": n,
"dialog": y,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": n,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": y,
"serviceworkers": a,
"text-decoration": n,
"speech-synthesis": y,
"user-timing": y,
"srcset": y,
"ambient-light": n,
"will-change": y,
"css-shapes": y,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": y,
"woff2": y,
"text-size-adjust": n,
"web-animation": a,
"resource-timing": y,
"custom-elements": y,
"imports": y,
"input-file-multiple": n,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": y,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": y,
"font-loading": y,
"font-unicode-range": y,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": y,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": a,
"background-attachment": a,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox for Android 33 (approximately 0.13% of all users)
*
*/
$browser: and_ff;
$browser_prefix: moz;
$browser_version: 33;
$browser_type: mobile;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": n,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": y,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": yx,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": y,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": a,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": y,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": a,
"fullscreen": ax,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": y,
"input-number": a,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": y,
"rtcpeerconnection": yx,
"css3-cursors": n,
"css3-cursors-newer": n,
"webvtt": y,
"promises": y,
"css-sticky": y,
"dialog": n,
"css-variables": y,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": y,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": y,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": y,
"picture": n,
"woff2": n,
"text-size-adjust": yx,
"web-animation": n,
"resource-timing": n,
"custom-elements": pd,
"imports": p,
"input-file-multiple": n,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": y,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: UC Browser for Android 9.9 (approximately 3.84% of all users)
*
*/
$browser: and_uc;
$browser_prefix: webkit;
$browser_version: 9.9;
$browser_type: mobile;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": n,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": y,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": ax,
"css-transitions": yx,
"font-feature": yx,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": n,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": n,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": p,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": a,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": n,
"geolocation": y,
"flexbox": ax,
"webgl": y,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": n,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": a,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": a,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": n,
"inline-block": y,
"notifications": n,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": n,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": yx,
"spellcheck-attribute": a,
"fullscreen": n,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": a,
"input-number": a,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": n,
"input-placeholder": y,
"spdy": u,
"css-repeating-gradients": yx,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": yx,
"pagevisibility": yx,
"stricttransportsecurity": u,
"style-scoped": y,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": n,
"mutationobserver": yx,
"css-selection": n,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": n,
"css3-cursors-newer": n,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": y,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": yx,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": n,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": n,
"css-clip-path": n,
"getrandomvalues": n,
"screen-orientation": y,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": ax,
"css-text-align-last": n,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Android Browser 2.1 (approximately 0.0% of all users)
*
*/
$browser: android;
$browser_prefix: webkit;
$browser_version: 2.1;
$browser_type: mobile;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": a,
"audio": n,
"contenteditable": n,
"dragndrop": n,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": n,
"html5semantic": a,
"offline-apps": y,
"webworkers": y,
"fontface": n,
"eot": n,
"woff": n,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": ax,
"css-table": y,
"css-gencontent": y,
"css-fixed": a,
"hashchange": n,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": ax,
"css3-colors": y,
"css3-boxsizing": ax,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": yx,
"transforms2d": yx,
"use-strict": n,
"transforms3d": n,
"sharedworkers": n,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": ax,
"css-gradients": ax,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": n,
"svg-css": n,
"svg-smil": n,
"svg-fonts": n,
"svg-filters": n,
"svg-html": n,
"svg-html5": n,
"canvas": a,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": p,
"online-status": u,
"eventsource": n,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": n,
"geolocation": y,
"flexbox": ax,
"webgl": n,
"fileapi": n,
"shadowdom": n,
"websockets": n,
"hidden": n,
"script-async": n,
"cors": y,
"calc": n,
"ruby": p,
"css-opacity": y,
"form-validation": n,
"history": n,
"json": y,
"classlist": p,
"text-overflow": y,
"webm": n,
"mpeg4": a,
"ogv": n,
"wordwrap": a,
"progressmeter": n,
"object-fit": n,
"xhr2": n,
"minmaxwh": y,
"details": p,
"text-stroke": yx,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": n,
"datalist": p,
"dataset": a,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": n,
"touch": y,
"matchesselector": n,
"pointer-events": y,
"blobbuilder": n,
"filereader": n,
"filesystem": n,
"bloburls": n,
"rellist": n,
"typedarrays": n,
"deviceorientation": n,
"script-defer": n,
"nav-timing": n,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": a,
"fullscreen": n,
"requestanimationframe": n,
"input-range": a,
"matchmedia": n,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": n,
"css-counters": y,
"css-resize": n,
"input-placeholder": y,
"spdy": n,
"css-repeating-gradients": n,
"css-filters": n,
"getcomputedstyle": a,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": n,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": p,
"user-select-none": yx,
"webp": n,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": n,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": n,
"css3-cursors-newer": n,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": n,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": n,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": n,
"css-clip-path": n,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": u,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": n,
"currentcolor": y,
"input-pattern": n,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Android Browser 2.2 (approximately 0.0% of all users)
*
*/
$browser: android;
$browser_prefix: webkit;
$browser_version: 2.2;
$browser_type: mobile;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": a,
"audio": n,
"contenteditable": n,
"dragndrop": n,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": n,
"html5semantic": y,
"offline-apps": y,
"webworkers": n,
"fontface": a,
"eot": n,
"woff": n,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": ax,
"css-table": y,
"css-gencontent": y,
"css-fixed": a,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": ax,
"css3-colors": y,
"css3-boxsizing": ax,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": n,
"transforms3d": n,
"sharedworkers": n,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": ax,
"css-gradients": ax,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": n,
"svg-css": n,
"svg-smil": n,
"svg-fonts": n,
"svg-filters": n,
"svg-html": n,
"svg-html5": n,
"canvas": a,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": p,
"online-status": u,
"eventsource": n,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": n,
"geolocation": y,
"flexbox": ax,
"webgl": n,
"fileapi": n,
"shadowdom": n,
"websockets": n,
"hidden": n,
"script-async": n,
"cors": y,
"calc": n,
"ruby": p,
"css-opacity": y,
"form-validation": n,
"history": y,
"json": y,
"classlist": p,
"text-overflow": y,
"webm": n,
"mpeg4": a,
"ogv": n,
"wordwrap": a,
"progressmeter": n,
"object-fit": n,
"xhr2": n,
"minmaxwh": y,
"details": p,
"text-stroke": yx,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": n,
"datalist": p,
"dataset": a,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": n,
"filereader": n,
"filesystem": n,
"bloburls": n,
"rellist": n,
"typedarrays": n,
"deviceorientation": n,
"script-defer": n,
"nav-timing": n,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": a,
"fullscreen": n,
"requestanimationframe": n,
"input-range": a,
"matchmedia": n,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": n,
"input-placeholder": y,
"spdy": n,
"css-repeating-gradients": n,
"css-filters": n,
"getcomputedstyle": a,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": n,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": p,
"user-select-none": yx,
"webp": n,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": n,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": n,
"css3-cursors-newer": n,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": n,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": n,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": n,
"css-clip-path": n,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": u,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": n,
"currentcolor": y,
"input-pattern": n,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Android Browser 2.3 (approximately 0.12% of all users)
*
*/
$browser: android;
$browser_prefix: webkit;
$browser_version: 2.3;
$browser_type: mobile;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": n,
"dragndrop": n,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": n,
"html5semantic": y,
"offline-apps": y,
"webworkers": n,
"fontface": a,
"eot": n,
"woff": n,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": ax,
"css-table": y,
"css-gencontent": y,
"css-fixed": a,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": ax,
"css3-colors": y,
"css3-boxsizing": ax,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": n,
"transforms3d": n,
"sharedworkers": n,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": ax,
"css-gradients": ax,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": n,
"svg-css": n,
"svg-smil": n,
"svg-fonts": n,
"svg-filters": n,
"svg-html": n,
"svg-html5": n,
"canvas": a,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": p,
"online-status": y,
"eventsource": n,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": n,
"geolocation": y,
"flexbox": ax,
"webgl": n,
"fileapi": n,
"shadowdom": n,
"websockets": n,
"hidden": n,
"script-async": n,
"cors": y,
"calc": n,
"ruby": p,
"css-opacity": y,
"form-validation": n,
"history": y,
"json": y,
"classlist": p,
"text-overflow": y,
"webm": a,
"mpeg4": a,
"ogv": n,
"wordwrap": a,
"progressmeter": n,
"object-fit": n,
"xhr2": n,
"minmaxwh": y,
"details": p,
"text-stroke": yx,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": n,
"datalist": p,
"dataset": a,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": n,
"filereader": n,
"filesystem": n,
"bloburls": n,
"rellist": n,
"typedarrays": n,
"deviceorientation": n,
"script-defer": n,
"nav-timing": n,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": a,
"fullscreen": n,
"requestanimationframe": n,
"input-range": a,
"matchmedia": n,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": n,
"input-placeholder": y,
"spdy": n,
"css-repeating-gradients": n,
"css-filters": n,
"getcomputedstyle": a,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": n,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": p,
"user-select-none": yx,
"webp": n,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": n,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": n,
"css3-cursors-newer": n,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": n,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": n,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": n,
"css-clip-path": n,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": u,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": n,
"currentcolor": y,
"input-pattern": n,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Android Browser 3 (approximately 0.0% of all users)
*
*/
$browser: android;
$browser_prefix: webkit;
$browser_version: 3;
$browser_type: mobile;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": n,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": n,
"html5semantic": y,
"offline-apps": y,
"webworkers": n,
"fontface": a,
"eot": n,
"woff": n,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": a,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": ax,
"css3-colors": y,
"css3-boxsizing": ax,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": n,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": ax,
"css-gradients": ax,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": a,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": n,
"svg-html": n,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": p,
"online-status": y,
"eventsource": n,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": n,
"geolocation": y,
"flexbox": ax,
"webgl": n,
"fileapi": a,
"shadowdom": n,
"websockets": n,
"hidden": n,
"script-async": y,
"cors": y,
"calc": n,
"ruby": a,
"css-opacity": y,
"form-validation": n,
"history": n,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": a,
"ogv": n,
"wordwrap": a,
"progressmeter": n,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": n,
"bloburls": n,
"rellist": n,
"typedarrays": n,
"deviceorientation": a,
"script-defer": y,
"nav-timing": n,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": a,
"fullscreen": n,
"requestanimationframe": n,
"input-range": a,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": n,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": n,
"css-filters": n,
"getcomputedstyle": a,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": n,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": p,
"user-select-none": yx,
"webp": n,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": n,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": n,
"css3-cursors-newer": n,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": n,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": u,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": n,
"currentcolor": y,
"input-pattern": n,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Android Browser 37 (approximately 0.0% of all users)
*
*/
$browser: android;
$browser_prefix: webkit;
$browser_version: 37;
$browser_type: mobile;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": n,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": n,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": a,
"fileapi": y,
"shadowdom": y,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": n,
"wordwrap": y,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": y,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": a,
"fullscreen": n,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": a,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": n,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": y,
"template": y,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": y,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": n,
"css3-cursors-newer": n,
"webvtt": y,
"promises": y,
"css-sticky": n,
"dialog": y,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": y,
"srcset": y,
"ambient-light": n,
"will-change": y,
"css-shapes": y,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": y,
"text-size-adjust": n,
"web-animation": a,
"resource-timing": y,
"custom-elements": y,
"imports": y,
"input-file-multiple": n,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": y,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": y,
"font-unicode-range": y,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": y,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": n,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Android Browser 4.1 (approximately 0.81% of all users)
*
*/
$browser: android;
$browser_prefix: webkit;
$browser_version: 4.1;
$browser_type: mobile;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": n,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": n,
"html5semantic": y,
"offline-apps": y,
"webworkers": n,
"fontface": y,
"eot": n,
"woff": n,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": a,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": n,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": a,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": n,
"svg-html": n,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": p,
"online-status": y,
"eventsource": n,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": n,
"geolocation": y,
"flexbox": ax,
"webgl": n,
"fileapi": a,
"shadowdom": n,
"websockets": n,
"hidden": y,
"script-async": y,
"cors": y,
"calc": n,
"ruby": a,
"css-opacity": y,
"form-validation": n,
"history": n,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": a,
"ogv": n,
"wordwrap": a,
"progressmeter": n,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": n,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": a,
"fullscreen": n,
"requestanimationframe": n,
"input-range": a,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": a,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": n,
"input-placeholder": a,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": n,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": n,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": p,
"user-select-none": yx,
"webp": a,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": n,
"mutationobserver": p,
"css-selection": n,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": n,
"css3-cursors-newer": n,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": n,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": n,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Android Browser 4.2-4.3 (approximately 1.37% of all users)
*
*/
$browser: android;
$browser_prefix: webkit;
$browser_version: 4.2-4.3;
$browser_type: mobile;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": n,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": n,
"html5semantic": y,
"offline-apps": y,
"webworkers": n,
"fontface": y,
"eot": n,
"woff": n,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": a,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": n,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": a,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": n,
"svg-html": n,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": p,
"online-status": y,
"eventsource": n,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": n,
"geolocation": y,
"flexbox": ax,
"webgl": n,
"fileapi": a,
"shadowdom": n,
"websockets": n,
"hidden": y,
"script-async": y,
"cors": y,
"calc": n,
"ruby": a,
"css-opacity": y,
"form-validation": n,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": a,
"ogv": n,
"wordwrap": a,
"progressmeter": n,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": y,
"css-grid": p,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": n,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": a,
"fullscreen": n,
"requestanimationframe": n,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": a,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": n,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": n,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": n,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": n,
"mutationobserver": p,
"css-selection": n,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": n,
"css3-cursors-newer": n,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": n,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": n,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Android Browser 4.4.3-4.4.4 (approximately 1.18% of all users)
*
*/
$browser: android;
$browser_prefix: webkit;
$browser_version: 4.4.3-4.4.4;
$browser_type: mobile;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": n,
"internationalization": u,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": n,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": n,
"fileapi": y,
"shadowdom": yx,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": a,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": n,
"wordwrap": y,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": n,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": a,
"fullscreen": n,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": a,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": n,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": y,
"clipboard": a,
"rtcpeerconnection": n,
"css3-cursors": n,
"css3-cursors-newer": n,
"webvtt": y,
"promises": y,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": y,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": y,
"custom-elements": y,
"imports": n,
"input-file-multiple": n,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": n,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Android Browser 4.4 (approximately 2.56% of all users)
*
*/
$browser: android;
$browser_prefix: webkit;
$browser_version: 4.4;
$browser_type: mobile;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": n,
"internationalization": u,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": n,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": n,
"fileapi": y,
"shadowdom": yx,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": a,
"ruby": a,
"css-opacity": y,
"form-validation": n,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": n,
"wordwrap": y,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": y,
"css-grid": p,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": a,
"fullscreen": n,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": a,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": n,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": y,
"clipboard": a,
"rtcpeerconnection": n,
"css3-cursors": n,
"css3-cursors-newer": n,
"webvtt": y,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": y,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": y,
"custom-elements": n,
"imports": n,
"input-file-multiple": n,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": n,
"currentcolor": y,
"input-pattern": n,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Android Browser 4 (approximately 0.25% of all users)
*
*/
$browser: android;
$browser_prefix: webkit;
$browser_version: 4;
$browser_type: mobile;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": n,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": n,
"html5semantic": y,
"offline-apps": y,
"webworkers": n,
"fontface": y,
"eot": n,
"woff": n,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": a,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": n,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": a,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": n,
"svg-html": n,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": p,
"online-status": y,
"eventsource": n,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": n,
"geolocation": y,
"flexbox": ax,
"webgl": n,
"fileapi": a,
"shadowdom": n,
"websockets": n,
"hidden": y,
"script-async": y,
"cors": y,
"calc": n,
"ruby": a,
"css-opacity": y,
"form-validation": n,
"history": n,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": a,
"ogv": n,
"wordwrap": a,
"progressmeter": n,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": n,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": a,
"fullscreen": n,
"requestanimationframe": n,
"input-range": a,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": a,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": n,
"input-placeholder": a,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": n,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": n,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": p,
"user-select-none": yx,
"webp": a,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": n,
"mutationobserver": p,
"css-selection": n,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": n,
"css3-cursors-newer": n,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": n,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": n,
"currentcolor": y,
"input-pattern": n,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Blackberry Browser 10 (approximately 0.0% of all users)
*
*/
$browser: bb;
$browser_prefix: webkit;
$browser_version: 10;
$browser_type: mobile;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": n,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": yx,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": n,
"geolocation": y,
"flexbox": yx,
"webgl": y,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": yx,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": n,
"mpeg4": y,
"ogv": n,
"wordwrap": y,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": a,
"fullscreen": a,
"requestanimationframe": yx,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": a,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": n,
"input-placeholder": y,
"spdy": n,
"css-repeating-gradients": yx,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": a,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": n,
"style-scoped": n,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": n,
"intrinsic-width": yx,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": yx,
"css-selection": n,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": u,
"canvas-blending": n,
"clipboard": a,
"rtcpeerconnection": n,
"css3-cursors": u,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": n,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": u,
"css-clip-path": n,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": u,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": n,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": u,
"css-text-align-last": n,
"fetch": n,
"background-attachment": u,
"currentcolor": y,
"input-pattern": u,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Blackberry Browser 7 (approximately 0.08% of all users)
*
*/
$browser: bb;
$browser_prefix: webkit;
$browser_version: 7;
$browser_type: mobile;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": n,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": n,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": a,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": a,
"css-boxshadow": yx,
"css3-colors": y,
"css3-boxsizing": ax,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": yx,
"css-gradients": ax,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": n,
"svg-html": n,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": p,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": n,
"geolocation": y,
"flexbox": ax,
"webgl": n,
"fileapi": a,
"shadowdom": n,
"websockets": y,
"hidden": n,
"script-async": y,
"cors": y,
"calc": n,
"ruby": p,
"css-opacity": y,
"form-validation": n,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": n,
"mpeg4": y,
"ogv": n,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": yx,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": n,
"filereader": n,
"filesystem": n,
"bloburls": n,
"rellist": n,
"typedarrays": n,
"deviceorientation": n,
"script-defer": y,
"nav-timing": n,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": a,
"fullscreen": n,
"requestanimationframe": n,
"input-range": y,
"matchmedia": n,
"input-datetime": n,
"input-color": y,
"input-number": n,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": n,
"input-placeholder": y,
"spdy": n,
"css-repeating-gradients": n,
"css-filters": n,
"getcomputedstyle": a,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": n,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": p,
"user-select-none": yx,
"webp": n,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": n,
"css-selection": n,
"css-placeholder": u,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": n,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": n,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": n,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": u,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": u,
"css-boxdecorationbreak": u,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": n,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 10 (approximately 0.03% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 10;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": a,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": n,
"transforms3d": n,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": n,
"online-status": n,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": a,
"shadowdom": n,
"websockets": a,
"hidden": y,
"script-async": y,
"cors": y,
"calc": n,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": n,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": ax,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": yx,
"audio-api": yx,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": n,
"requestanimationframe": yx,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": n,
"getcomputedstyle": a,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": n,
"user-select-none": yx,
"webp": a,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 11 (approximately 0.08% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 11;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": a,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": n,
"transforms3d": n,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": ax,
"online-status": n,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": a,
"shadowdom": n,
"websockets": a,
"hidden": y,
"script-async": y,
"cors": y,
"calc": n,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": n,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": ax,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": yx,
"audio-api": yx,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": n,
"requestanimationframe": yx,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": n,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": n,
"user-select-none": yx,
"webp": a,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 12 (approximately 0.03% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 12;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": a,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": n,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": ax,
"online-status": n,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": a,
"shadowdom": n,
"websockets": a,
"hidden": y,
"script-async": y,
"cors": y,
"calc": n,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": n,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": ax,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": yx,
"audio-api": yx,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": n,
"requestanimationframe": yx,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": n,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": n,
"user-select-none": yx,
"webp": a,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 13 (approximately 0.02% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 13;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": a,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": ax,
"online-status": n,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": a,
"hidden": y,
"script-async": y,
"cors": y,
"calc": n,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": n,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": yx,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": n,
"requestanimationframe": yx,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": n,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": n,
"user-select-none": yx,
"webp": a,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": a,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 14 (approximately 0.02% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 14;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": a,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": ax,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": a,
"hidden": y,
"script-async": y,
"cors": y,
"calc": n,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": n,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": yx,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": n,
"requestanimationframe": yx,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": n,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": n,
"user-select-none": yx,
"webp": a,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": a,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 15 (approximately 0.02% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 15;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": yx,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": ax,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": a,
"hidden": y,
"script-async": y,
"cors": y,
"calc": n,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": n,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": yx,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": ax,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": yx,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": n,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": n,
"user-select-none": yx,
"webp": a,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": a,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 16 (approximately 0.01% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 16;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": ax,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": ax,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": n,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": n,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": yx,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": ax,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": yx,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": n,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": n,
"user-select-none": yx,
"webp": a,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": a,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 17 (approximately 0.01% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 17;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": ax,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": ax,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": n,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": n,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": yx,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": ax,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": yx,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": n,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": n,
"user-select-none": yx,
"webp": a,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": a,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 18 (approximately 0.03% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 18;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": ax,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": ax,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": ax,
"webgl": y,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": n,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": n,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": yx,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": ax,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": yx,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": n,
"user-select-none": yx,
"webp": a,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": n,
"mutationobserver": yx,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": a,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 19 (approximately 0.01% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 19;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": ax,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": ax,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": ax,
"webgl": y,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": yx,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": n,
"svg-img": y,
"datalist": n,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": n,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": yx,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": nd,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": yx,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": n,
"user-select-none": yx,
"webp": a,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": n,
"mutationobserver": yx,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": a,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 20 (approximately 0.01% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 20;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": ax,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": ax,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": ax,
"webgl": y,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": yx,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": n,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": n,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": nd,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": yx,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": a,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": nd,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": n,
"user-select-none": yx,
"webp": a,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": n,
"mutationobserver": yx,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": a,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": yx,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": nd,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 21 (approximately 0.07% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 21;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": yx,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": ax,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": yx,
"webgl": y,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": yx,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": n,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": nd,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": yx,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": a,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": nd,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": n,
"user-select-none": yx,
"webp": a,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": yx,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": a,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": yx,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": nd,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": yx,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": yx,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 22 (approximately 0.08% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 22;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": yx,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": ax,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": yx,
"webgl": y,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": yx,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": nd,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": yx,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": a,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": nd,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": a,
"intrinsic-width": yx,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": yx,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": a,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": yx,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": nd,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": yx,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 23 (approximately 0.02% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 23;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": yx,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": yx,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": yx,
"webgl": y,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": yx,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": nd,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": yx,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": a,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": nd,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": yx,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": p,
"css-sticky": nd,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": yx,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": nd,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": yx,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 24 (approximately 0.05% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 24;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": yx,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": yx,
"webgl": y,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": yx,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": nd,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": a,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": nd,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": yx,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": p,
"css-sticky": nd,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": nd,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": yx,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 25 (approximately 0.03% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 25;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": yx,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": yx,
"webgl": y,
"fileapi": y,
"shadowdom": yx,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": yx,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": nd,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": a,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": nd,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": yx,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": n,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": p,
"css-sticky": nd,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": y,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": nd,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": y,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": y,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 26 (approximately 0.05% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 26;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": yx,
"webgl": y,
"fileapi": y,
"shadowdom": yx,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": nd,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": nd,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": yx,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": n,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": p,
"css-sticky": nd,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": n,
"serviceworkers": n,
"text-decoration": nxd,
"speech-synthesis": n,
"user-timing": y,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": nd,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": y,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": y,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 27 (approximately 0.05% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 27;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": yx,
"webgl": y,
"fileapi": y,
"shadowdom": yx,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": nd,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": nd,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": n,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": p,
"css-sticky": nd,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": n,
"serviceworkers": n,
"text-decoration": nxd,
"speech-synthesis": n,
"user-timing": y,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": y,
"custom-elements": nd,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": y,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 28 (approximately 0.05% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 28;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": yx,
"webgl": y,
"fileapi": y,
"shadowdom": yx,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": nd,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": nd,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": n,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": p,
"css-sticky": nd,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": n,
"serviceworkers": n,
"text-decoration": nxd,
"speech-synthesis": n,
"user-timing": y,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": y,
"custom-elements": nd,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": y,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 29 (approximately 0.08% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 29;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": y,
"fileapi": y,
"shadowdom": yx,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": pd,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": nd,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": nd,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": n,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": p,
"css-sticky": nd,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": nd,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": n,
"serviceworkers": n,
"text-decoration": nxd,
"speech-synthesis": n,
"user-timing": y,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": y,
"custom-elements": nd,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": y,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": y,
"xml-serializer": a,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 30 (approximately 0.13% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 30;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": y,
"fileapi": y,
"shadowdom": yx,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": pd,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": nd,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": nd,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": y,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": p,
"css-sticky": nd,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": nd,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": n,
"serviceworkers": n,
"text-decoration": nxd,
"speech-synthesis": n,
"user-timing": y,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": y,
"custom-elements": nd,
"imports": nd,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": y,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 31 (approximately 0.75% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 31;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": y,
"fileapi": y,
"shadowdom": yx,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": pd,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": nd,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": nd,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": y,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": p,
"css-sticky": nd,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": nd,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": n,
"serviceworkers": n,
"text-decoration": nxd,
"speech-synthesis": n,
"user-timing": y,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": y,
"custom-elements": nd,
"imports": nd,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": y,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 32 (approximately 0.08% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 32;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": y,
"fileapi": y,
"shadowdom": yx,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": pd,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": nd,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": nd,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": y,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": a,
"css-sticky": nd,
"dialog": nd,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": nd,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": n,
"serviceworkers": n,
"text-decoration": nxd,
"speech-synthesis": n,
"user-timing": y,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": y,
"custom-elements": nd,
"imports": nd,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": y,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 33 (approximately 0.29% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 33;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": y,
"fileapi": y,
"shadowdom": yx,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": pd,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": yx,
"css-regions": nd,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": nd,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": y,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": y,
"css-sticky": nd,
"dialog": nd,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": nd,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": n,
"serviceworkers": n,
"text-decoration": nxd,
"speech-synthesis": y,
"user-timing": y,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": y,
"custom-elements": y,
"imports": nd,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": y,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 34 (approximately 0.23% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 34;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": y,
"fileapi": y,
"shadowdom": yx,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": pd,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": y,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": nd,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": nd,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": y,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": y,
"css-sticky": nd,
"dialog": nd,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": nd,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": n,
"serviceworkers": n,
"text-decoration": nxd,
"speech-synthesis": y,
"user-timing": y,
"srcset": a,
"ambient-light": n,
"will-change": n,
"css-shapes": nd,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": y,
"custom-elements": y,
"imports": nd,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": y,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 35 (approximately 0.39% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 35;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": y,
"fileapi": y,
"shadowdom": y,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": pd,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": y,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": nd,
"svg-fragment": n,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": y,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": y,
"css-sticky": nd,
"dialog": nd,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": nd,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": n,
"serviceworkers": n,
"text-decoration": nxd,
"speech-synthesis": y,
"user-timing": y,
"srcset": a,
"ambient-light": n,
"will-change": n,
"css-shapes": nd,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": y,
"custom-elements": y,
"imports": pd,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": y,
"font-unicode-range": a,
"gamepad": y,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": nd,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 36 (approximately 0.67% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 36;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": y,
"fileapi": y,
"shadowdom": y,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": pd,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": y,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": nd,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": y,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": y,
"promises": y,
"css-sticky": nd,
"dialog": nd,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": nd,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": n,
"serviceworkers": n,
"text-decoration": nxd,
"speech-synthesis": y,
"user-timing": y,
"srcset": a,
"ambient-light": n,
"will-change": y,
"css-shapes": nd,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": y,
"text-size-adjust": n,
"web-animation": a,
"resource-timing": y,
"custom-elements": y,
"imports": y,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": y,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": y,
"font-unicode-range": y,
"gamepad": y,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": y,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": nd,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 37 (approximately 0.82% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 37;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": y,
"fileapi": y,
"shadowdom": y,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": pd,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": y,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": y,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": y,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": y,
"promises": y,
"css-sticky": n,
"dialog": y,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": nd,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": nd,
"serviceworkers": n,
"text-decoration": nxd,
"speech-synthesis": y,
"user-timing": y,
"srcset": a,
"ambient-light": n,
"will-change": y,
"css-shapes": y,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": nd,
"woff2": y,
"text-size-adjust": n,
"web-animation": a,
"resource-timing": y,
"custom-elements": y,
"imports": y,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": y,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": n,
"font-loading": y,
"font-unicode-range": y,
"gamepad": y,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": y,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": nd,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 38 (approximately 0.68% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 38;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": y,
"fileapi": y,
"shadowdom": y,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": pd,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": y,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": y,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": y,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": y,
"promises": y,
"css-sticky": n,
"dialog": y,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": nd,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": y,
"serviceworkers": n,
"text-decoration": nxd,
"speech-synthesis": y,
"user-timing": y,
"srcset": y,
"ambient-light": n,
"will-change": y,
"css-shapes": y,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": y,
"woff2": y,
"text-size-adjust": n,
"web-animation": a,
"resource-timing": y,
"custom-elements": y,
"imports": y,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": y,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": y,
"font-loading": y,
"font-unicode-range": y,
"gamepad": y,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": y,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": nd,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 39 (approximately 1.97% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 39;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": y,
"fileapi": y,
"shadowdom": y,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": pd,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": y,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": y,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": y,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": y,
"promises": y,
"css-sticky": n,
"dialog": y,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": nd,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": y,
"serviceworkers": n,
"text-decoration": nxd,
"speech-synthesis": y,
"user-timing": y,
"srcset": y,
"ambient-light": n,
"will-change": y,
"css-shapes": y,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": y,
"woff2": y,
"text-size-adjust": n,
"web-animation": y,
"resource-timing": y,
"custom-elements": y,
"imports": y,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": y,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": y,
"font-loading": y,
"font-unicode-range": y,
"gamepad": y,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": y,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": nd,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 4 (approximately 0.01% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 4;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": a,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": n,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": a,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": p,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": yx,
"css3-colors": y,
"css3-boxsizing": ax,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": yx,
"transforms2d": yx,
"use-strict": n,
"transforms3d": n,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": yx,
"css-gradients": ax,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": a,
"svg-smil": a,
"svg-fonts": y,
"svg-filters": n,
"svg-html": a,
"svg-html5": p,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": p,
"online-status": n,
"eventsource": n,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": a,
"flexbox": ax,
"webgl": n,
"fileapi": n,
"shadowdom": n,
"websockets": a,
"hidden": n,
"script-async": n,
"cors": y,
"calc": n,
"ruby": p,
"css-opacity": y,
"form-validation": n,
"history": n,
"json": y,
"classlist": p,
"text-overflow": y,
"webm": n,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": n,
"object-fit": n,
"xhr2": u,
"minmaxwh": y,
"details": p,
"text-stroke": yx,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": a,
"css-grid": n,
"menu": n,
"rem": u,
"ttf": y,
"touch": n,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": n,
"filereader": n,
"filesystem": n,
"bloburls": n,
"rellist": n,
"typedarrays": n,
"deviceorientation": n,
"script-defer": n,
"nav-timing": n,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": n,
"fullscreen": n,
"requestanimationframe": n,
"input-range": u,
"matchmedia": n,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": n,
"css-filters": n,
"getcomputedstyle": a,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": n,
"user-select-none": u,
"webp": n,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": a,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": n,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": n,
"css-clip-path": n,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": n,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 40 (approximately 27.38% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 40;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": y,
"fileapi": y,
"shadowdom": y,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": pd,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": y,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": y,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": y,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": y,
"promises": y,
"css-sticky": n,
"dialog": y,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": nd,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": y,
"serviceworkers": a,
"text-decoration": nxd,
"speech-synthesis": y,
"user-timing": y,
"srcset": y,
"ambient-light": n,
"will-change": y,
"css-shapes": y,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": y,
"woff2": y,
"text-size-adjust": n,
"web-animation": y,
"resource-timing": y,
"custom-elements": y,
"imports": y,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": y,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": y,
"font-loading": y,
"font-unicode-range": y,
"gamepad": y,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": y,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": nd,
"fetch": a,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 41 (approximately 0.19% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 41;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": y,
"fileapi": y,
"shadowdom": y,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": pd,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": y,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": y,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": y,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": y,
"promises": y,
"css-sticky": n,
"dialog": y,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": y,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": y,
"serviceworkers": a,
"text-decoration": nxd,
"speech-synthesis": y,
"user-timing": y,
"srcset": y,
"ambient-light": n,
"will-change": y,
"css-shapes": y,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": y,
"woff2": y,
"text-size-adjust": n,
"web-animation": y,
"resource-timing": y,
"custom-elements": y,
"imports": y,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": y,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": y,
"font-loading": y,
"font-unicode-range": y,
"gamepad": y,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": y,
"broadcastchannel": n,
"css-crisp-edges": y,
"css-text-align-last": nd,
"fetch": a,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 42 (approximately 0.17% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 42;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": y,
"fileapi": y,
"shadowdom": y,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": pd,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": y,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": y,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": y,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": y,
"promises": y,
"css-sticky": n,
"dialog": y,
"css-variables": u,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": y,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": y,
"serviceworkers": a,
"text-decoration": nxd,
"speech-synthesis": y,
"user-timing": y,
"srcset": y,
"ambient-light": n,
"will-change": y,
"css-shapes": y,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": u,
"css-image-orientation": n,
"picture": y,
"woff2": y,
"text-size-adjust": n,
"web-animation": y,
"resource-timing": y,
"custom-elements": y,
"imports": y,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": y,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": y,
"font-loading": y,
"font-unicode-range": y,
"gamepad": y,
"css-font-stretch": u,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": u,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": y,
"broadcastchannel": n,
"css-crisp-edges": y,
"css-text-align-last": nd,
"fetch": y,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 43 (approximately 0.0% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 43;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": y,
"fileapi": y,
"shadowdom": y,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": pd,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": y,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": y,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": y,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": y,
"promises": y,
"css-sticky": n,
"dialog": y,
"css-variables": u,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": y,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": y,
"serviceworkers": a,
"text-decoration": nxd,
"speech-synthesis": y,
"user-timing": y,
"srcset": y,
"ambient-light": n,
"will-change": y,
"css-shapes": y,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": u,
"css-image-orientation": n,
"picture": y,
"woff2": y,
"text-size-adjust": n,
"web-animation": y,
"resource-timing": y,
"custom-elements": y,
"imports": y,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": y,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": y,
"font-loading": y,
"font-unicode-range": y,
"gamepad": y,
"css-font-stretch": u,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": u,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": y,
"broadcastchannel": n,
"css-crisp-edges": y,
"css-text-align-last": nd,
"fetch": y,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 44 (approximately 0.0% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 44;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": a,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": y,
"font-feature": yx,
"css-animation": yx,
"css-gradients": y,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": y,
"online-status": y,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": y,
"webgl": y,
"fileapi": y,
"shadowdom": y,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": a,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": y,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": y,
"text-stroke": yx,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": pd,
"menu": n,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": y,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": yx,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": yx,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": y,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": yx,
"getcomputedstyle": y,
"word-break": a,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": y,
"intrinsic-width": yx,
"cryptography": y,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": y,
"mutationobserver": y,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": ax,
"canvas-blending": y,
"clipboard": a,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": y,
"promises": y,
"css-sticky": n,
"dialog": y,
"css-variables": u,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": y,
"web-speech": ax,
"high-resolution-time": y,
"battery-status": y,
"serviceworkers": a,
"text-decoration": nxd,
"speech-synthesis": y,
"user-timing": y,
"srcset": y,
"ambient-light": n,
"will-change": y,
"css-shapes": y,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": u,
"css-image-orientation": n,
"picture": y,
"woff2": y,
"text-size-adjust": n,
"web-animation": y,
"resource-timing": y,
"custom-elements": y,
"imports": y,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": y,
"autofocus": y,
"css-clip-path": ax,
"getrandomvalues": y,
"screen-orientation": y,
"font-loading": y,
"font-unicode-range": y,
"gamepad": y,
"css-font-stretch": u,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": u,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": yx,
"css-boxdecorationbreak": yx,
"object-observe": y,
"broadcastchannel": n,
"css-crisp-edges": y,
"css-text-align-last": nd,
"fetch": y,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 5 (approximately 0.01% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 5;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": a,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": a,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": yx,
"css3-colors": y,
"css3-boxsizing": ax,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": n,
"transforms3d": n,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": yx,
"css-gradients": ax,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": a,
"svg-html": a,
"svg-html5": p,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": p,
"online-status": n,
"eventsource": n,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": ax,
"webgl": n,
"fileapi": n,
"shadowdom": n,
"websockets": a,
"hidden": n,
"script-async": n,
"cors": y,
"calc": n,
"ruby": a,
"css-opacity": y,
"form-validation": n,
"history": y,
"json": y,
"classlist": p,
"text-overflow": y,
"webm": n,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": n,
"object-fit": n,
"xhr2": u,
"minmaxwh": y,
"details": p,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": a,
"css-grid": n,
"menu": n,
"rem": u,
"ttf": y,
"touch": n,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": n,
"filereader": n,
"filesystem": n,
"bloburls": n,
"rellist": n,
"typedarrays": n,
"deviceorientation": n,
"script-defer": n,
"nav-timing": n,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": n,
"fullscreen": n,
"requestanimationframe": n,
"input-range": y,
"matchmedia": n,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": n,
"css-filters": n,
"getcomputedstyle": a,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": n,
"user-select-none": u,
"webp": n,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": n,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 6 (approximately 0.01% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 6;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": a,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": yx,
"css3-colors": y,
"css3-boxsizing": ax,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": n,
"transforms3d": n,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": yx,
"css-gradients": ax,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": a,
"svg-html": a,
"svg-html5": p,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": p,
"online-status": n,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": ax,
"webgl": n,
"fileapi": a,
"shadowdom": n,
"websockets": a,
"hidden": y,
"script-async": n,
"cors": y,
"calc": n,
"ruby": a,
"css-opacity": y,
"form-validation": n,
"history": y,
"json": y,
"classlist": p,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": n,
"object-fit": n,
"xhr2": u,
"minmaxwh": y,
"details": p,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": a,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": n,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": n,
"filereader": y,
"filesystem": n,
"bloburls": n,
"rellist": n,
"typedarrays": n,
"deviceorientation": n,
"script-defer": n,
"nav-timing": yx,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": n,
"fullscreen": n,
"requestanimationframe": n,
"input-range": y,
"matchmedia": n,
"input-datetime": n,
"input-color": n,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": n,
"css-filters": n,
"getcomputedstyle": a,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": n,
"user-select-none": yx,
"webp": p,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": n,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 7 (approximately 0.01% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 7;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": a,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": yx,
"css3-colors": y,
"css3-boxsizing": ax,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": n,
"transforms3d": n,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": yx,
"css-gradients": ax,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": a,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": p,
"online-status": n,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": ax,
"webgl": n,
"fileapi": a,
"shadowdom": n,
"websockets": a,
"hidden": y,
"script-async": n,
"cors": y,
"calc": n,
"ruby": a,
"css-opacity": y,
"form-validation": n,
"history": y,
"json": y,
"classlist": p,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": n,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": n,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": n,
"filereader": y,
"filesystem": n,
"bloburls": n,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": n,
"nav-timing": yx,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": n,
"fullscreen": n,
"requestanimationframe": n,
"input-range": y,
"matchmedia": n,
"input-datetime": n,
"input-color": n,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": n,
"css-filters": n,
"getcomputedstyle": a,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": n,
"user-select-none": yx,
"webp": p,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": n,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 8 (approximately 0.01% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 8;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": a,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": yx,
"css3-colors": y,
"css3-boxsizing": ax,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": n,
"transforms3d": n,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": yx,
"css-gradients": ax,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": p,
"online-status": n,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": a,
"shadowdom": n,
"websockets": a,
"hidden": y,
"script-async": y,
"cors": y,
"calc": n,
"ruby": a,
"css-opacity": y,
"form-validation": n,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": n,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": ax,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": yx,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": n,
"fullscreen": n,
"requestanimationframe": n,
"input-range": y,
"matchmedia": n,
"input-datetime": n,
"input-color": n,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": n,
"css-filters": n,
"getcomputedstyle": a,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": n,
"user-select-none": yx,
"webp": p,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": n,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Chrome 9 (approximately 0.01% of all users)
*
*/
$browser: chrome;
$browser_prefix: webkit;
$browser_version: 9;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": a,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": yx,
"css3-colors": y,
"css3-boxsizing": ax,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": n,
"transforms3d": n,
"sharedworkers": y,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": n,
"css-animation": yx,
"css-gradients": ax,
"css-canvas": yx,
"css-reflections": yx,
"css-masks": ax,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": y,
"svg-filters": y,
"svg-html": a,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": y,
"indexeddb": p,
"online-status": n,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": p,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": a,
"shadowdom": n,
"websockets": a,
"hidden": y,
"script-async": y,
"cors": y,
"calc": n,
"ruby": a,
"css-opacity": y,
"form-validation": n,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": yx,
"inline-block": y,
"notifications": ax,
"stream": n,
"svg-img": y,
"datalist": p,
"dataset": y,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": n,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": ax,
"bloburls": yx,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": yx,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": n,
"requestanimationframe": n,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": n,
"css-filters": n,
"getcomputedstyle": a,
"word-break": a,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": n,
"user-select-none": yx,
"webp": a,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": y,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": y,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": n,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": a,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": ax,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": n,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 10 (approximately 0.03% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 10;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": n,
"css-hyphens": yx,
"css-transitions": yx,
"font-feature": ax,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": a,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": yx,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": ax,
"hidden": y,
"script-async": y,
"cors": y,
"calc": yx,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": n,
"ogv": y,
"wordwrap": a,
"progressmeter": a,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": n,
"menu": a,
"rem": y,
"ttf": y,
"touch": a,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": yx,
"input-range": n,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": n,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": n,
"css-repeating-gradients": yx,
"css-filters": a,
"getcomputedstyle": y,
"word-break": n,
"viewport-units": n,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": yx,
"mutationobserver": n,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": ax,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": a,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": n,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 11 (approximately 0.03% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 11;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": n,
"css-hyphens": yx,
"css-transitions": yx,
"font-feature": ax,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": a,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": yx,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": yx,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": n,
"ogv": y,
"wordwrap": a,
"progressmeter": a,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": n,
"menu": a,
"rem": y,
"ttf": y,
"touch": a,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": yx,
"input-range": n,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": n,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": n,
"css-repeating-gradients": yx,
"css-filters": a,
"getcomputedstyle": y,
"word-break": n,
"viewport-units": n,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": yx,
"mutationobserver": n,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": yx,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": ax,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": a,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": n,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 12 (approximately 0.05% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 12;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": n,
"css-hyphens": yx,
"css-transitions": yx,
"font-feature": ax,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": a,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": yx,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": yx,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": n,
"ogv": y,
"wordwrap": a,
"progressmeter": a,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": n,
"menu": a,
"rem": y,
"ttf": y,
"touch": a,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": ax,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": yx,
"input-range": n,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": n,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": n,
"css-repeating-gradients": yx,
"css-filters": a,
"getcomputedstyle": y,
"word-break": n,
"viewport-units": n,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": yx,
"mutationobserver": n,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": yx,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": ax,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": a,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 13 (approximately 0.02% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 13;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": n,
"css-hyphens": yx,
"css-transitions": yx,
"font-feature": ax,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": a,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": yx,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": yx,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": n,
"ogv": y,
"wordwrap": a,
"progressmeter": a,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": n,
"menu": a,
"rem": y,
"ttf": y,
"touch": a,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": yx,
"input-range": n,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": n,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": a,
"getcomputedstyle": y,
"word-break": n,
"viewport-units": n,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": yx,
"mutationobserver": n,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": yx,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": ax,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": a,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 14 (approximately 0.03% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 14;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": n,
"css-hyphens": yx,
"css-transitions": yx,
"font-feature": ax,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": a,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": yx,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": yx,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": n,
"ogv": y,
"wordwrap": a,
"progressmeter": a,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": n,
"menu": a,
"rem": y,
"ttf": y,
"touch": a,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": yx,
"input-range": n,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": n,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": a,
"getcomputedstyle": y,
"word-break": n,
"viewport-units": n,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": yx,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": ax,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": a,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 15 (approximately 0.03% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 15;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": yx,
"sharedworkers": n,
"css-hyphens": yx,
"css-transitions": yx,
"font-feature": yx,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": a,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": yx,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": yx,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": n,
"ogv": y,
"wordwrap": a,
"progressmeter": a,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": n,
"menu": a,
"rem": y,
"ttf": y,
"touch": a,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": yx,
"input-range": n,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": n,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": yx,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": n,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": y,
"outline": y,
"download": n,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": n,
"opus": y,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": yx,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": ax,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": a,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 16 (approximately 0.05% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 16;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": n,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": yx,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": a,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": n,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": n,
"menu": a,
"rem": y,
"ttf": y,
"touch": a,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": yx,
"input-range": n,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": n,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": n,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": y,
"outline": y,
"download": n,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": n,
"opus": y,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 17 (approximately 0.03% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 17;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": n,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": yx,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": a,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": n,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": n,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": n,
"menu": a,
"rem": y,
"ttf": y,
"touch": a,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": yx,
"input-range": n,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": a,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": n,
"contentsecuritypolicy": y,
"pagevisibility": yx,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": y,
"outline": y,
"download": n,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": n,
"opus": y,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 18 (approximately 0.03% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 18;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": n,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": yx,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": a,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": n,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": n,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": n,
"menu": a,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": yx,
"input-range": n,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": a,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": n,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": y,
"outline": y,
"download": n,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": n,
"opus": y,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": n,
"screen-orientation": yx,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 19 (approximately 0.03% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 19;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": n,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": yx,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": a,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": n,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": n,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": a,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": yx,
"input-range": n,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": a,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": y,
"outline": y,
"download": n,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": n,
"opus": y,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": n,
"screen-orientation": yx,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 2 (approximately 0.01% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 2;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": n,
"video": n,
"audio": n,
"contenteditable": n,
"dragndrop": p,
"internationalization": n,
"queryselector": p,
"getelementsbyclassname": p,
"forms": p,
"html5semantic": n,
"offline-apps": p,
"webworkers": p,
"fontface": n,
"eot": n,
"woff": n,
"multibackgrounds": n,
"border-image": n,
"background-img-opts": n,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": p,
"css-sel2": y,
"css-sel3": n,
"css-textshadow": n,
"css-boxshadow": n,
"css3-colors": a,
"css3-boxsizing": yx,
"css-mediaqueries": n,
"multicolumn": ax,
"border-radius": ax,
"transforms2d": n,
"use-strict": n,
"transforms3d": n,
"sharedworkers": n,
"css-hyphens": n,
"css-transitions": n,
"font-feature": n,
"css-animation": n,
"css-gradients": n,
"css-canvas": n,
"css-reflections": n,
"css-masks": n,
"svg": a,
"svg-css": n,
"svg-smil": p,
"svg-fonts": n,
"svg-filters": n,
"svg-html": n,
"svg-html5": p,
"canvas": y,
"canvas-text": p,
"namevalue-storage": a,
"sql-storage": n,
"indexeddb": n,
"online-status": n,
"eventsource": n,
"x-doc-messaging": n,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": a,
"geolocation": p,
"flexbox": ax,
"webgl": n,
"fileapi": n,
"shadowdom": n,
"websockets": n,
"hidden": n,
"script-async": n,
"cors": n,
"calc": n,
"ruby": p,
"css-opacity": y,
"form-validation": n,
"history": n,
"json": n,
"classlist": p,
"text-overflow": p,
"webm": n,
"mpeg4": n,
"ogv": n,
"wordwrap": n,
"progressmeter": n,
"object-fit": n,
"xhr2": n,
"minmaxwh": y,
"details": n,
"text-stroke": n,
"inline-block": ax,
"notifications": n,
"stream": n,
"svg-img": n,
"datalist": p,
"dataset": a,
"css-grid": n,
"menu": n,
"rem": n,
"ttf": n,
"touch": n,
"matchesselector": n,
"pointer-events": n,
"blobbuilder": n,
"filereader": n,
"filesystem": n,
"bloburls": n,
"rellist": n,
"typedarrays": n,
"deviceorientation": n,
"script-defer": n,
"nav-timing": n,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": n,
"requestanimationframe": n,
"input-range": n,
"matchmedia": n,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": n,
"css-counters": y,
"css-resize": n,
"input-placeholder": n,
"spdy": n,
"css-repeating-gradients": n,
"css-filters": n,
"getcomputedstyle": n,
"word-break": n,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": n,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": n,
"user-select-none": yx,
"webp": n,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": yx,
"css-placeholder": n,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": a,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": n,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": n,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": n,
"css-clip-path": n,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": n,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": n,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": n,
"registerprotocolhandler": n
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 20 (approximately 0.03% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 20;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": n,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": yx,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": a,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": n,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": n,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": a,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": yx,
"input-range": n,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": a,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": n,
"opus": y,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": nd,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": n,
"screen-orientation": yx,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 21 (approximately 0.05% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 21;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": n,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": yx,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": a,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": a,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": n,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": a,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": yx,
"input-range": n,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": a,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": n,
"opus": y,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": nd,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 22 (approximately 0.03% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 22;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": n,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": yx,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": a,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": a,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": a,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": a,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": yx,
"input-range": n,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": a,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": y,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": y,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": nd,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 23 (approximately 0.04% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 23;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": n,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": yx,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": a,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": a,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": a,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": a,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": a,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": y,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": y,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": nd,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 24 (approximately 0.06% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 24;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": n,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": yx,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": a,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": a,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": a,
"rem": y,
"ttf": y,
"touch": y,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": a,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": y,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": nd,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": y,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": nd,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 25 (approximately 0.06% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 25;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": n,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": yx,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": a,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": a,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": a,
"rem": y,
"ttf": y,
"touch": nd,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": a,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": y,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": nd,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": y,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": nd,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 26 (approximately 0.05% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 26;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": n,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": yx,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": a,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": a,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": a,
"rem": y,
"ttf": y,
"touch": nd,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": a,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": nd,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": y,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": nd,
"promises": p,
"css-sticky": nd,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": y,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": y,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": nd,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 27 (approximately 0.13% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 27;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": n,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": yx,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": a,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": a,
"mpeg4": a,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": a,
"rem": y,
"ttf": y,
"touch": nd,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": a,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": nd,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": y,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": nd,
"promises": a,
"css-sticky": nd,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": y,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": y,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": nd,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 28 (approximately 0.05% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 28;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": n,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": yx,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": y,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": a,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": a,
"rem": y,
"ttf": y,
"touch": nd,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": nd,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": y,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": nd,
"promises": a,
"css-sticky": nd,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": y,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": y,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": nd,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 29 (approximately 0.07% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 29;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": y,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": yx,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": y,
"webgl": a,
"fileapi": y,
"shadowdom": nd,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": a,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": a,
"rem": y,
"ttf": y,
"touch": nd,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": nd,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": y,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": nd,
"promises": y,
"css-sticky": nd,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": y,
"will-change": nd,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": y,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": nd,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": nd,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": n,
"font-unicode-range": n,
"gamepad": y,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 3.5 (approximately 0.01% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 3.5;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": p,
"html5semantic": a,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": n,
"multibackgrounds": n,
"border-image": ax,
"background-img-opts": n,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": p,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": yx,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": yx,
"transforms2d": yx,
"use-strict": n,
"transforms3d": n,
"sharedworkers": n,
"css-hyphens": n,
"css-transitions": n,
"font-feature": n,
"css-animation": n,
"css-gradients": n,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": n,
"svg-smil": p,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": p,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": n,
"online-status": y,
"eventsource": n,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": ax,
"webgl": n,
"fileapi": n,
"shadowdom": n,
"websockets": n,
"hidden": n,
"script-async": n,
"cors": y,
"calc": n,
"ruby": p,
"css-opacity": y,
"form-validation": n,
"history": n,
"json": y,
"classlist": p,
"text-overflow": p,
"webm": n,
"mpeg4": n,
"ogv": y,
"wordwrap": a,
"progressmeter": n,
"object-fit": n,
"xhr2": a,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": n,
"datalist": p,
"dataset": a,
"css-grid": n,
"menu": n,
"rem": n,
"ttf": y,
"touch": n,
"matchesselector": n,
"pointer-events": n,
"blobbuilder": n,
"filereader": n,
"filesystem": n,
"bloburls": n,
"rellist": n,
"typedarrays": n,
"deviceorientation": n,
"script-defer": y,
"nav-timing": n,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": n,
"requestanimationframe": n,
"input-range": n,
"matchmedia": n,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": n,
"css-counters": y,
"css-resize": n,
"input-placeholder": n,
"spdy": n,
"css-repeating-gradients": n,
"css-filters": n,
"getcomputedstyle": a,
"word-break": n,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": n,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": n,
"user-select-none": yx,
"webp": n,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": yx,
"css-placeholder": n,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": a,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": n,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": n,
"css-clip-path": a,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": a,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": n,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 3.6 (approximately 0.09% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 3.6;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": p,
"html5semantic": a,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": ax,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": yx,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": yx,
"transforms2d": yx,
"use-strict": n,
"transforms3d": n,
"sharedworkers": n,
"css-hyphens": n,
"css-transitions": n,
"font-feature": n,
"css-animation": n,
"css-gradients": yx,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": n,
"svg-smil": p,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": p,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": n,
"online-status": y,
"eventsource": n,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": ax,
"webgl": n,
"fileapi": y,
"shadowdom": n,
"websockets": n,
"hidden": n,
"script-async": y,
"cors": y,
"calc": n,
"ruby": p,
"css-opacity": y,
"form-validation": n,
"history": n,
"json": y,
"classlist": y,
"text-overflow": p,
"webm": n,
"mpeg4": n,
"ogv": y,
"wordwrap": a,
"progressmeter": n,
"object-fit": n,
"xhr2": a,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": n,
"datalist": p,
"dataset": a,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": n,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": n,
"filereader": y,
"filesystem": n,
"bloburls": n,
"rellist": n,
"typedarrays": n,
"deviceorientation": p,
"script-defer": y,
"nav-timing": n,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": n,
"requestanimationframe": n,
"input-range": n,
"matchmedia": n,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": n,
"css-counters": y,
"css-resize": n,
"input-placeholder": n,
"spdy": n,
"css-repeating-gradients": yx,
"css-filters": a,
"getcomputedstyle": a,
"word-break": n,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": n,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": n,
"user-select-none": yx,
"webp": n,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": yx,
"css-placeholder": n,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": a,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": n,
"css-clip-path": a,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": a,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": n,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": n,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 3 (approximately 0.04% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 3;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": n,
"audio": n,
"contenteditable": a,
"dragndrop": p,
"internationalization": n,
"queryselector": p,
"getelementsbyclassname": y,
"forms": p,
"html5semantic": a,
"offline-apps": a,
"webworkers": p,
"fontface": n,
"eot": n,
"woff": n,
"multibackgrounds": n,
"border-image": n,
"background-img-opts": n,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": p,
"css-sel2": y,
"css-sel3": n,
"css-textshadow": n,
"css-boxshadow": n,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": n,
"multicolumn": ax,
"border-radius": yx,
"transforms2d": n,
"use-strict": n,
"transforms3d": n,
"sharedworkers": n,
"css-hyphens": n,
"css-transitions": n,
"font-feature": n,
"css-animation": n,
"css-gradients": n,
"css-canvas": n,
"css-reflections": n,
"css-masks": n,
"svg": y,
"svg-css": n,
"svg-smil": p,
"svg-fonts": n,
"svg-filters": y,
"svg-html": a,
"svg-html5": p,
"canvas": y,
"canvas-text": p,
"namevalue-storage": a,
"sql-storage": n,
"indexeddb": n,
"online-status": n,
"eventsource": n,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": p,
"flexbox": ax,
"webgl": n,
"fileapi": n,
"shadowdom": n,
"websockets": n,
"hidden": n,
"script-async": n,
"cors": n,
"calc": n,
"ruby": p,
"css-opacity": y,
"form-validation": n,
"history": n,
"json": n,
"classlist": p,
"text-overflow": p,
"webm": n,
"mpeg4": n,
"ogv": n,
"wordwrap": n,
"progressmeter": n,
"object-fit": n,
"xhr2": n,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": n,
"datalist": p,
"dataset": a,
"css-grid": n,
"menu": n,
"rem": n,
"ttf": n,
"touch": n,
"matchesselector": n,
"pointer-events": n,
"blobbuilder": n,
"filereader": n,
"filesystem": n,
"bloburls": n,
"rellist": n,
"typedarrays": n,
"deviceorientation": n,
"script-defer": n,
"nav-timing": n,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": n,
"requestanimationframe": n,
"input-range": n,
"matchmedia": n,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": n,
"css-counters": y,
"css-resize": n,
"input-placeholder": n,
"spdy": n,
"css-repeating-gradients": n,
"css-filters": n,
"getcomputedstyle": a,
"word-break": n,
"viewport-units": n,
"contentsecuritypolicy": n,
"pagevisibility": n,
"stricttransportsecurity": n,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": n,
"user-select-none": yx,
"webp": n,
"intrinsic-width": n,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": n,
"mutationobserver": n,
"css-selection": yx,
"css-placeholder": n,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": a,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": n,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": n,
"css-clip-path": n,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": n,
"css-media-resolution": n,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": n,
"css-text-align-last": n,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": n,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 30 (approximately 0.1% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 30;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": y,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": yx,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": y,
"webgl": a,
"fileapi": y,
"shadowdom": nd,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": a,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": a,
"rem": y,
"ttf": y,
"touch": nd,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": y,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": nd,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": y,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": nd,
"promises": y,
"css-sticky": nd,
"dialog": n,
"css-variables": n,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": y,
"will-change": nd,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": y,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": pd,
"imports": p,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": nd,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": n,
"font-unicode-range": n,
"gamepad": y,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 31 (approximately 0.46% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 31;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": y,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": yx,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": y,
"webgl": a,
"fileapi": y,
"shadowdom": nd,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": a,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": a,
"rem": y,
"ttf": y,
"touch": nd,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": y,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": nd,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": y,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": y,
"promises": y,
"css-sticky": nd,
"dialog": n,
"css-variables": y,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": y,
"will-change": nd,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": y,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": nd,
"custom-elements": pd,
"imports": p,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": nd,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": n,
"font-unicode-range": n,
"gamepad": y,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 32 (approximately 0.28% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 32;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": y,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": yx,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": y,
"webgl": a,
"fileapi": y,
"shadowdom": nd,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": a,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": a,
"rem": y,
"ttf": y,
"touch": nd,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": y,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": nd,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": nd,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": y,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": y,
"promises": y,
"css-sticky": y,
"dialog": n,
"css-variables": y,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": y,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": n,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": nd,
"ambient-light": y,
"will-change": nd,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": y,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": nd,
"custom-elements": pd,
"imports": pd,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": nd,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": n,
"font-unicode-range": n,
"gamepad": y,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": y,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 33 (approximately 0.17% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 33;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": y,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": yx,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": y,
"webgl": a,
"fileapi": y,
"shadowdom": nd,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": a,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": a,
"rem": y,
"ttf": y,
"touch": nd,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": y,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": a,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": nd,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": nd,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": y,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": y,
"promises": y,
"css-sticky": y,
"dialog": n,
"css-variables": y,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": y,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": nd,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": nd,
"ambient-light": y,
"will-change": nd,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": y,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": nd,
"custom-elements": pd,
"imports": pd,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": nd,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": n,
"font-unicode-range": n,
"gamepad": y,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": y,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": n,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 34 (approximately 0.32% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 34;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": y,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": y,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": y,
"webgl": a,
"fileapi": y,
"shadowdom": nd,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": a,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": a,
"rem": y,
"ttf": y,
"touch": nd,
"matchesselector": y,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": y,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": ad,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": a,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": nd,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": y,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": y,
"promises": y,
"css-sticky": y,
"dialog": n,
"css-variables": y,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": y,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": nd,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": nd,
"ambient-light": y,
"will-change": nd,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": y,
"picture": nd,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": nd,
"custom-elements": pd,
"imports": pd,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": nd,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": n,
"font-unicode-range": n,
"gamepad": y,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": y,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": nd,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 35 (approximately 8.93% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 35;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": y,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": y,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": y,
"webgl": a,
"fileapi": y,
"shadowdom": nd,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": a,
"rem": y,
"ttf": y,
"touch": nd,
"matchesselector": y,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": y,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": y,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": a,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": nd,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": y,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": y,
"promises": y,
"css-sticky": y,
"dialog": n,
"css-variables": y,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": y,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": nd,
"text-decoration": yx,
"speech-synthesis": n,
"user-timing": n,
"srcset": nd,
"ambient-light": y,
"will-change": nd,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": y,
"picture": nd,
"woff2": nd,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": y,
"custom-elements": pd,
"imports": pd,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": nd,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": nd,
"font-unicode-range": n,
"gamepad": y,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": y,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": nd,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 36 (approximately 0.72% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 36;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": y,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": y,
"css-animation": y,
"css-gradients": y,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": y,
"webgl": a,
"fileapi": y,
"shadowdom": nd,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": p,
"menu": a,
"rem": y,
"ttf": y,
"touch": nd,
"matchesselector": y,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": y,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": y,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": a,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": nd,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": y,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": y,
"promises": y,
"css-sticky": y,
"dialog": n,
"css-variables": y,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": y,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": nd,
"text-decoration": y,
"speech-synthesis": n,
"user-timing": n,
"srcset": nd,
"ambient-light": y,
"will-change": y,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": y,
"picture": nd,
"woff2": nd,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": y,
"custom-elements": pd,
"imports": pd,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": nd,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": nd,
"font-unicode-range": nd,
"gamepad": y,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": y,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": nd,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 37 (approximately 0.02% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 37;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": y,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": y,
"css-animation": y,
"css-gradients": y,
"css-canvas": u,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": y,
"webgl": a,
"fileapi": y,
"shadowdom": nd,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": u,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": u,
"menu": a,
"rem": y,
"ttf": y,
"touch": nd,
"matchesselector": y,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": y,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": y,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": a,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": nd,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": y,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": y,
"promises": y,
"css-sticky": y,
"dialog": u,
"css-variables": y,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": y,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": nd,
"text-decoration": y,
"speech-synthesis": n,
"user-timing": n,
"srcset": nd,
"ambient-light": y,
"will-change": y,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": u,
"css-image-orientation": y,
"picture": nd,
"woff2": nd,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": y,
"custom-elements": pd,
"imports": pd,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": nd,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": y,
"font-unicode-range": nd,
"gamepad": y,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": y,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": nd,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 38 (approximately 0.0% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 38;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": y,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": y,
"css-animation": y,
"css-gradients": y,
"css-canvas": u,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": y,
"webgl": a,
"fileapi": y,
"shadowdom": nd,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": y,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": u,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": u,
"menu": a,
"rem": y,
"ttf": y,
"touch": nd,
"matchesselector": y,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": y,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": y,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": a,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": nd,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": y,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": y,
"promises": y,
"css-sticky": y,
"dialog": u,
"css-variables": y,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": y,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": nd,
"text-decoration": y,
"speech-synthesis": n,
"user-timing": n,
"srcset": y,
"ambient-light": y,
"will-change": y,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": u,
"css-image-orientation": y,
"picture": y,
"woff2": nd,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": y,
"custom-elements": pd,
"imports": pd,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": nd,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": y,
"font-unicode-range": nd,
"gamepad": y,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": y,
"object-observe": n,
"broadcastchannel": y,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": nd,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 39 (approximately 0.0% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 39;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": y,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": y,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": y,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": y,
"use-strict": y,
"transforms3d": y,
"sharedworkers": y,
"css-hyphens": yx,
"css-transitions": y,
"font-feature": y,
"css-animation": y,
"css-gradients": y,
"css-canvas": u,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": y,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": y,
"online-status": a,
"eventsource": y,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": y,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": y,
"webgl": a,
"fileapi": y,
"shadowdom": nd,
"websockets": y,
"hidden": y,
"script-async": y,
"cors": y,
"calc": y,
"ruby": y,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": y,
"webm": y,
"mpeg4": y,
"ogv": y,
"wordwrap": a,
"progressmeter": y,
"object-fit": y,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": u,
"inline-block": y,
"notifications": y,
"stream": yx,
"svg-img": y,
"datalist": y,
"dataset": y,
"css-grid": u,
"menu": a,
"rem": y,
"ttf": y,
"touch": nd,
"matchesselector": y,
"pointer-events": y,
"blobbuilder": y,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": y,
"typedarrays": y,
"deviceorientation": a,
"script-defer": y,
"nav-timing": y,
"audio-api": y,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": ax,
"requestanimationframe": y,
"input-range": y,
"matchmedia": y,
"input-datetime": n,
"input-color": y,
"input-number": y,
"iframe-sandbox": y,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": y,
"css-repeating-gradients": y,
"css-filters": y,
"getcomputedstyle": y,
"word-break": y,
"viewport-units": y,
"contentsecuritypolicy": y,
"pagevisibility": y,
"stricttransportsecurity": y,
"style-scoped": y,
"svg-fragment": y,
"outline": y,
"download": y,
"pointer": p,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": a,
"template": y,
"opus": y,
"jpegxr": n,
"channel-messaging": nd,
"css3-tabsize": yx,
"mutationobserver": y,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": y,
"clipboard": y,
"rtcpeerconnection": yx,
"css3-cursors": y,
"css3-cursors-newer": y,
"webvtt": y,
"promises": y,
"css-sticky": y,
"dialog": u,
"css-variables": y,
"vibration": y,
"css-backgroundblendmode": y,
"css-mixblendmode": y,
"web-speech": n,
"high-resolution-time": y,
"battery-status": a,
"serviceworkers": nd,
"text-decoration": y,
"speech-synthesis": n,
"user-timing": n,
"srcset": y,
"ambient-light": y,
"will-change": y,
"css-shapes": n,
"domcontentloaded": y,
"proximity": y,
"kerning-pairs-ligatures": y,
"iframe-seamless": u,
"css-image-orientation": y,
"picture": y,
"woff2": nd,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": y,
"custom-elements": pd,
"imports": pd,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": y,
"css-supports-api": y,
"css-touch-action": nd,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": y,
"screen-orientation": yx,
"font-loading": y,
"font-unicode-range": nd,
"gamepad": y,
"css-font-stretch": y,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": y,
"xml-serializer": y,
"css-image-set": n,
"css-boxdecorationbreak": y,
"object-observe": n,
"broadcastchannel": y,
"css-crisp-edges": yx,
"css-text-align-last": yx,
"fetch": nd,
"background-attachment": y,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 4 (approximately 0.02% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 4;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": n,
"sharedworkers": n,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": ax,
"css-animation": n,
"css-gradients": yx,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": a,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": ax,
"online-status": a,
"eventsource": n,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": a,
"hidden": y,
"script-async": y,
"cors": y,
"calc": yx,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": p,
"webm": a,
"mpeg4": n,
"ogv": y,
"wordwrap": a,
"progressmeter": n,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": y,
"datalist": y,
"dataset": a,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": a,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": n,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": p,
"script-defer": y,
"nav-timing": n,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": n,
"requestanimationframe": yx,
"input-range": n,
"matchmedia": n,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": n,
"css-counters": y,
"css-resize": yx,
"input-placeholder": y,
"spdy": n,
"css-repeating-gradients": yx,
"css-filters": a,
"getcomputedstyle": y,
"word-break": n,
"viewport-units": n,
"contentsecuritypolicy": y,
"pagevisibility": n,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": n,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": yx,
"mutationobserver": n,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": a,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": n,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";
@@ -0,0 +1,241 @@
/*
* ../application
* Browser: Firefox 5 (approximately 0.01% of all users)
*
*/
$browser: firefox;
$browser_prefix: moz;
$browser_version: 5;
$browser_type: desktop;
// CSS Compatibility
$browser_capabilities: (
"png-alpha": y,
"apng": y,
"video": y,
"audio": y,
"contenteditable": y,
"dragndrop": y,
"internationalization": n,
"queryselector": y,
"getelementsbyclassname": y,
"forms": a,
"html5semantic": y,
"offline-apps": y,
"webworkers": y,
"fontface": y,
"eot": n,
"woff": y,
"multibackgrounds": y,
"border-image": ax,
"background-img-opts": y,
"css-table": y,
"css-gencontent": y,
"css-fixed": y,
"hashchange": y,
"css-sel2": y,
"css-sel3": y,
"css-textshadow": y,
"css-boxshadow": y,
"css3-colors": y,
"css3-boxsizing": yx,
"css-mediaqueries": y,
"multicolumn": ax,
"border-radius": y,
"transforms2d": yx,
"use-strict": y,
"transforms3d": n,
"sharedworkers": n,
"css-hyphens": n,
"css-transitions": yx,
"font-feature": ax,
"css-animation": yx,
"css-gradients": yx,
"css-canvas": n,
"css-reflections": n,
"css-masks": a,
"svg": y,
"svg-css": a,
"svg-smil": y,
"svg-fonts": n,
"svg-filters": y,
"svg-html": y,
"svg-html5": y,
"canvas": y,
"canvas-text": y,
"namevalue-storage": y,
"sql-storage": n,
"indexeddb": ax,
"online-status": a,
"eventsource": n,
"x-doc-messaging": y,
"datauri": y,
"mathml": y,
"css-featurequeries": n,
"xhtml": y,
"xhtmlsmil": p,
"wai-aria": y,
"geolocation": y,
"flexbox": ax,
"webgl": a,
"fileapi": y,
"shadowdom": n,
"websockets": a,
"hidden": y,
"script-async": y,
"cors": y,
"calc": yx,
"ruby": p,
"css-opacity": y,
"form-validation": y,
"history": y,
"json": y,
"classlist": y,
"text-overflow": p,
"webm": a,
"mpeg4": n,
"ogv": y,
"wordwrap": a,
"progressmeter": n,
"object-fit": n,
"xhr2": y,
"minmaxwh": y,
"details": p,
"text-stroke": n,
"inline-block": y,
"notifications": n,
"stream": n,
"svg-img": y,
"datalist": y,
"dataset": a,
"css-grid": n,
"menu": n,
"rem": y,
"ttf": y,
"touch": a,
"matchesselector": ax,
"pointer-events": y,
"blobbuilder": n,
"filereader": y,
"filesystem": n,
"bloburls": y,
"rellist": n,
"typedarrays": y,
"deviceorientation": p,
"script-defer": y,
"nav-timing": n,
"audio-api": n,
"css-regions": n,
"spellcheck-attribute": y,
"fullscreen": n,
"requestanimationframe": yx,
"input-range": n,
"matchmedia": n,
"input-datetime": n,
"input-color": n,
"input-number": n,
"iframe-sandbox": n,
"css-counters": y,
"css-resize": y,
"input-placeholder": y,
"spdy": n,
"css-repeating-gradients": yx,
"css-filters": a,
"getcomputedstyle": y,
"word-break": n,
"viewport-units": n,
"contentsecuritypolicy": y,
"pagevisibility": n,
"stricttransportsecurity": y,
"style-scoped": n,
"svg-fragment": n,
"outline": y,
"download": n,
"pointer": n,
"user-select-none": yx,
"webp": p,
"intrinsic-width": yx,
"cryptography": p,
"template": n,
"opus": n,
"jpegxr": n,
"channel-messaging": n,
"css3-tabsize": yx,
"mutationobserver": n,
"css-selection": yx,
"css-placeholder": ax,
"css-deviceadaptation": n,
"text-emphasis": n,
"canvas-blending": n,
"clipboard": n,
"rtcpeerconnection": n,
"css3-cursors": y,
"css3-cursors-newer": yx,
"webvtt": n,
"promises": p,
"css-sticky": n,
"dialog": n,
"css-variables": n,
"vibration": n,
"css-backgroundblendmode": n,
"css-mixblendmode": n,
"web-speech": n,
"high-resolution-time": n,
"battery-status": n,
"serviceworkers": n,
"text-decoration": n,
"speech-synthesis": n,
"user-timing": n,
"srcset": n,
"ambient-light": n,
"will-change": n,
"css-shapes": n,
"domcontentloaded": y,
"proximity": n,
"kerning-pairs-ligatures": y,
"iframe-seamless": n,
"css-image-orientation": n,
"picture": n,
"woff2": n,
"text-size-adjust": n,
"web-animation": n,
"resource-timing": n,
"custom-elements": n,
"imports": n,
"input-file-multiple": y,
"atob-btoa": y,
"css-appearance": yx,
"css-background-offsets": n,
"css-supports-api": n,
"css-touch-action": n,
"autofocus": y,
"css-clip-path": a,
"getrandomvalues": n,
"screen-orientation": n,
"font-loading": n,
"font-unicode-range": n,
"gamepad": n,
"css-font-stretch": n,
"font-size-adjust": y,
"link-icon-png": y,
"link-icon-svg": y,
"css-media-resolution": a,
"xml-serializer": a,
"css-image-set": n,
"css-boxdecorationbreak": n,
"object-observe": n,
"broadcastchannel": n,
"css-crisp-edges": yx,
"css-text-align-last": n,
"fetch": n,
"background-attachment": a,
"currentcolor": y,
"input-pattern": y,
"registerprotocolhandler": y
);
@import "bumbleberry-settings";
@import "bumbleberry";
@import "../application";

Some files were not shown because too many files have changed in this diff Show More