diff --git a/app/assets/stylesheets/_application.scss b/app/assets/stylesheets/_application.scss
index 0175d7e..7b09577 100644
--- a/app/assets/stylesheets/_application.scss
+++ b/app/assets/stylesheets/_application.scss
@@ -76,74 +76,7 @@ table {
button,
.button {
- position: relative;
- display: inline-block;
- color: $white;
- 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;
- @include _(text-stroke, 1px rgba(0, 0, 0, 0.25));
-
- @include before-and-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);
- }
- @include before {
- height: 100%;
- width: 100%;
- margin-right: 1em;
- }
- @include after {
- border-style: solid;
- border-width: 1em 0 1em 1em;
- }
-
- &:hover,
- &:focus,
- &:hover,
- &:focus {
- @include before-and-after {
- right: -1em;
- border-left-color: rgba(0, 0, 0, 0.15);
- }
- }
- &:hover,
- &:focus {
- @include before {
- background-color: rgba(0, 0, 0, 0.15);
- }
- }
-
- &:active {
- @include _(transform, scale(0.95));
-
- @include after {
- left: 120%;
- }
- }
-
- &:disabled {
- @include _(opacity, 0.5);
- cursor: inherit;
-
- @include before-and-after {
- display: none;
- }
- }
+ @include button;
#main &[type="submit"] {
background-color: $colour-5;
@@ -1782,4 +1715,122 @@ $header-tilt: 8deg;
display: inherit;
}
-@include translation-pointer;
+html[data-lingua-franca-example="html"] {
+ $caption-height: 4rem;
+ @include _(transform, translateY($caption-height));
+
+ #lingua-franca-window-caption {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: $caption-height;
+ background-color: #CCC;
+ z-index: 1000;
+ font-size: 1rem;
+ @include _(transform, translateY($caption-height * -1));
+
+ .window-tab {
+ height: 1.75rem;
+ position: relative;
+ background-color: #EEE;
+ float: left;
+ padding: 0.25em 2em 0 1em;
+ margin: 0.25em 1em;
+ border-radius: 0.5em 0.5em 0 0;
+ color: #444;
+ @include font-family(secondary);
+
+ @include after {
+ content: '×';
+ position: absolute;
+ right: 0.5em;
+ top: 0.25em;
+ }
+ }
+
+ i {
+ font-style: normal;
+ }
+
+ .window-minimize,
+ .window-maximize {
+ @include after {
+ content: '';
+ position: absolute;
+ top: 0.75em;
+ right: 2em;
+ border-style: solid;
+ border-width: 0 0.5em 0.5em 0.5em;
+ border-left-color: transparent;
+ border-right-color: transparent;
+ }
+ }
+
+ .window-minimize {
+ @include after {
+ right: 3.5em;
+ border-top-width: 0.5em;
+ border-bottom-width: 0;
+ }
+ }
+
+ .window-close {
+ @include after {
+ content: '×';
+ position: absolute;
+ right: 0.25em;
+ top: 0.1em;
+ font-size: 1.75em;
+ line-height: 1em;
+ }
+ }
+
+ .window-url-bar {
+ position: absolute;
+ top: $caption-height / 2;
+ left: 0;
+ width: 100%;
+ height: $caption-height / 2;
+ background-color: #EEE;
+
+ .url-bar {
+ position: absolute;
+ top: 0.25rem;
+ left: 3.5rem;
+ bottom: 0.25rem;
+ right: 0.25rem;
+ background-color: #FFF;
+ border: 1px solid #CCC;
+ padding: 0 0.25rem;
+ font-size: 0.8em;
+ line-height: 1.75em;
+ }
+ }
+
+ .window-back,
+ .window-forward {
+ @include after {
+ content: '';
+ position: absolute;
+ left: 0.5em;
+ top: 0.5em;
+ border-style: solid;
+ border-width: 0.5em 0.75em 0.5em 0;
+ border-top-color: transparent;
+ border-bottom-color: transparent;
+ color: #666;
+ }
+ }
+
+ .window-forward {
+ @include after {
+ left: 2em;
+ border-right-width: 0;
+ border-left-width: 0.75em;
+ }
+ }
+ }
+
+ @include translation-pointer;
+}
diff --git a/app/assets/stylesheets/_email-example.scss b/app/assets/stylesheets/_email-example.scss
index a82fd66..1c346ad 100644
--- a/app/assets/stylesheets/_email-example.scss
+++ b/app/assets/stylesheets/_email-example.scss
@@ -2,3 +2,105 @@
@import "settings";
@include translation-pointer;
+
+#email-folders {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+ float: left;
+ width: 15em;
+ padding: 1em;
+
+ li {
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ padding: 0.25em;
+ @include font-family(secondary);
+
+ &.selected {
+ background-color: $colour-1;
+ color: $white;
+ }
+ }
+}
+
+#email-header {
+ background-color: $colour-1;
+ margin: 0;
+
+ h1 {
+ margin: 0;
+ padding: 0.25em;
+ color: $white !important;
+ }
+}
+
+button {
+ @include button;
+ @include font-family(secondary);
+ font-size: 1em;
+ margin: 0 0 1em;
+}
+
+#email-inner {
+ background-color: $white;
+ overflow: auto;
+}
+
+#email-inner-content {
+ margin: 1em;
+}
+
+.lingua-franca-title {
+ margin: 0.25em;
+ padding: 0.5em;
+ font-size: 1.5em;
+ color: #555 !important;
+ border-bottom: 1px solid #CCC;
+}
+
+#email-from, #email-to {
+ margin: 0 1em;
+ font-size: 1.25em;
+}
+
+#email-to {
+ color: #888;
+ font-size: 1em;
+ margin: 0 1.25em;
+}
+
+$letter: $white;
+$bg: $colour-1;
+
+.letter-icon {
+ font-size: 2.75em;
+ float: left;
+ margin: 0.25em 0.5em;
+ background-color: $letter;
+ position: relative;
+ height: 0.7em;
+ width: 1em;
+ overflow: hidden;
+ &:before, &:after {
+ content: '';
+ position: absolute;
+ left: 50%;
+ height: 0.6em;
+ width: 0.6em;
+ transform: rotate(45deg) skew(-5deg,-5deg);
+ margin-left: -0.5em;
+ height: 1em;
+ width: 1em;
+ background-color: $letter;
+ }
+ &:before {
+ bottom: -100%;
+ box-shadow: -0.05em -0.05em 0 0 $bg;
+ }
+ &:after {
+ top: -95%;
+ box-shadow: 0.05em 0.05em 0 0 $bg;
+ }
+}
diff --git a/app/assets/stylesheets/_settings.scss b/app/assets/stylesheets/_settings.scss
index 0dea388..980120f 100644
--- a/app/assets/stylesheets/_settings.scss
+++ b/app/assets/stylesheets/_settings.scss
@@ -85,3 +85,74 @@ $white: #FFFEFE;
}
}
}
+
+@mixin button {
+ position: relative;
+ display: inline-block;
+ color: $white;
+ 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;
+ @include _(text-stroke, 1px rgba(0, 0, 0, 0.25));
+
+ @include before-and-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);
+ }
+ @include before {
+ height: 100%;
+ width: 100%;
+ margin-right: 1em;
+ }
+ @include after {
+ border-style: solid;
+ border-width: 1em 0 1em 1em;
+ }
+
+ &:hover,
+ &:focus,
+ &:hover,
+ &:focus {
+ @include before-and-after {
+ right: -1em;
+ border-left-color: rgba(0, 0, 0, 0.15);
+ }
+ }
+ &:hover,
+ &:focus {
+ @include before {
+ background-color: rgba(0, 0, 0, 0.15);
+ }
+ }
+
+ &:active {
+ @include _(transform, scale(0.95));
+
+ @include after {
+ left: 120%;
+ }
+ }
+
+ &:disabled {
+ @include _(opacity, 0.5);
+ cursor: inherit;
+
+ @include before-and-after {
+ display: none;
+ }
+ }
+}
diff --git a/app/assets/stylesheets/application/and_uc-9.9.scss b/app/assets/stylesheets/application/and_uc-9.9.scss
index 6240ce9..b03784e 100644
--- a/app/assets/stylesheets/application/and_uc-9.9.scss
+++ b/app/assets/stylesheets/application/and_uc-9.9.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/android-2.1.scss b/app/assets/stylesheets/application/android-2.1.scss
index 1970b53..4cc811f 100644
--- a/app/assets/stylesheets/application/android-2.1.scss
+++ b/app/assets/stylesheets/application/android-2.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": u,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": u,
+ "addeventlistener": y,
+ "documenthead": u,
+ "innertext": u,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/android-2.2.scss b/app/assets/stylesheets/application/android-2.2.scss
index 96ee822..6275b52 100644
--- a/app/assets/stylesheets/application/android-2.2.scss
+++ b/app/assets/stylesheets/application/android-2.2.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": u,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": u,
+ "addeventlistener": y,
+ "documenthead": u,
+ "innertext": u,
+ "netinfo": a,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/android-2.3.scss b/app/assets/stylesheets/application/android-2.3.scss
index f0808e9..7f9b620 100644
--- a/app/assets/stylesheets/application/android-2.3.scss
+++ b/app/assets/stylesheets/application/android-2.3.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": a,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/android-3.scss b/app/assets/stylesheets/application/android-3.scss
index 89f5f57..ee660da 100644
--- a/app/assets/stylesheets/application/android-3.scss
+++ b/app/assets/stylesheets/application/android-3.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": a,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/android-4.1.scss b/app/assets/stylesheets/application/android-4.1.scss
index 42a8efd..f5e528a 100644
--- a/app/assets/stylesheets/application/android-4.1.scss
+++ b/app/assets/stylesheets/application/android-4.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": a,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/android-4.2-4.3.scss b/app/assets/stylesheets/application/android-4.2-4.3.scss
index 57b0f28..2517400 100644
--- a/app/assets/stylesheets/application/android-4.2-4.3.scss
+++ b/app/assets/stylesheets/application/android-4.2-4.3.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": a,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/android-4.4.3-4.4.4.scss b/app/assets/stylesheets/application/android-4.4.3-4.4.4.scss
index fe53094..d4d7359 100644
--- a/app/assets/stylesheets/application/android-4.4.3-4.4.4.scss
+++ b/app/assets/stylesheets/application/android-4.4.3-4.4.4.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/android-4.4.scss b/app/assets/stylesheets/application/android-4.4.scss
index 107ac6b..aeac91f 100644
--- a/app/assets/stylesheets/application/android-4.4.scss
+++ b/app/assets/stylesheets/application/android-4.4.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/android-4.scss b/app/assets/stylesheets/application/android-4.scss
index f444925..d52a09d 100644
--- a/app/assets/stylesheets/application/android-4.scss
+++ b/app/assets/stylesheets/application/android-4.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": a,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/bb-10.scss b/app/assets/stylesheets/application/bb-10.scss
index 65a808b..bcbfe52 100644
--- a/app/assets/stylesheets/application/bb-10.scss
+++ b/app/assets/stylesheets/application/bb-10.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/bb-7.scss b/app/assets/stylesheets/application/bb-7.scss
index 6081d9a..204df4a 100644
--- a/app/assets/stylesheets/application/bb-7.scss
+++ b/app/assets/stylesheets/application/bb-7.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-10.scss b/app/assets/stylesheets/application/chrome-10.scss
index 80a0210..9aeb327 100644
--- a/app/assets/stylesheets/application/chrome-10.scss
+++ b/app/assets/stylesheets/application/chrome-10.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-11.scss b/app/assets/stylesheets/application/chrome-11.scss
index 0d2e678..740b0dc 100644
--- a/app/assets/stylesheets/application/chrome-11.scss
+++ b/app/assets/stylesheets/application/chrome-11.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-12.scss b/app/assets/stylesheets/application/chrome-12.scss
index bab8073..c9e2d99 100644
--- a/app/assets/stylesheets/application/chrome-12.scss
+++ b/app/assets/stylesheets/application/chrome-12.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-13.scss b/app/assets/stylesheets/application/chrome-13.scss
index 4acd7d6..534c6c0 100644
--- a/app/assets/stylesheets/application/chrome-13.scss
+++ b/app/assets/stylesheets/application/chrome-13.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-14.scss b/app/assets/stylesheets/application/chrome-14.scss
index d0ecc68..f80051d 100644
--- a/app/assets/stylesheets/application/chrome-14.scss
+++ b/app/assets/stylesheets/application/chrome-14.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-15.scss b/app/assets/stylesheets/application/chrome-15.scss
index 0338d01..923ef47 100644
--- a/app/assets/stylesheets/application/chrome-15.scss
+++ b/app/assets/stylesheets/application/chrome-15.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-16.scss b/app/assets/stylesheets/application/chrome-16.scss
index b2de514..fb76311 100644
--- a/app/assets/stylesheets/application/chrome-16.scss
+++ b/app/assets/stylesheets/application/chrome-16.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-17.scss b/app/assets/stylesheets/application/chrome-17.scss
index bdd3853..7502353 100644
--- a/app/assets/stylesheets/application/chrome-17.scss
+++ b/app/assets/stylesheets/application/chrome-17.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-18.scss b/app/assets/stylesheets/application/chrome-18.scss
index c3ae599..e3e9cb5 100644
--- a/app/assets/stylesheets/application/chrome-18.scss
+++ b/app/assets/stylesheets/application/chrome-18.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-19.scss b/app/assets/stylesheets/application/chrome-19.scss
index eb52d85..c73acc6 100644
--- a/app/assets/stylesheets/application/chrome-19.scss
+++ b/app/assets/stylesheets/application/chrome-19.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-20.scss b/app/assets/stylesheets/application/chrome-20.scss
index ef74cdd..bc17fe8 100644
--- a/app/assets/stylesheets/application/chrome-20.scss
+++ b/app/assets/stylesheets/application/chrome-20.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-21.scss b/app/assets/stylesheets/application/chrome-21.scss
index 4e599a1..9428204 100644
--- a/app/assets/stylesheets/application/chrome-21.scss
+++ b/app/assets/stylesheets/application/chrome-21.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-22.scss b/app/assets/stylesheets/application/chrome-22.scss
index c2244ed..e56361d 100644
--- a/app/assets/stylesheets/application/chrome-22.scss
+++ b/app/assets/stylesheets/application/chrome-22.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-23.scss b/app/assets/stylesheets/application/chrome-23.scss
index 987475e..7c1d4fd 100644
--- a/app/assets/stylesheets/application/chrome-23.scss
+++ b/app/assets/stylesheets/application/chrome-23.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-24.scss b/app/assets/stylesheets/application/chrome-24.scss
index 8906d7b..e74eb84 100644
--- a/app/assets/stylesheets/application/chrome-24.scss
+++ b/app/assets/stylesheets/application/chrome-24.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-25.scss b/app/assets/stylesheets/application/chrome-25.scss
index cde21ea..0e85ae4 100644
--- a/app/assets/stylesheets/application/chrome-25.scss
+++ b/app/assets/stylesheets/application/chrome-25.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-26.scss b/app/assets/stylesheets/application/chrome-26.scss
index 2def1cc..3d9ee0c 100644
--- a/app/assets/stylesheets/application/chrome-26.scss
+++ b/app/assets/stylesheets/application/chrome-26.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-27.scss b/app/assets/stylesheets/application/chrome-27.scss
index 339ac9e..b1bb2e9 100644
--- a/app/assets/stylesheets/application/chrome-27.scss
+++ b/app/assets/stylesheets/application/chrome-27.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-28.scss b/app/assets/stylesheets/application/chrome-28.scss
index b68a904..4c81b13 100644
--- a/app/assets/stylesheets/application/chrome-28.scss
+++ b/app/assets/stylesheets/application/chrome-28.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-29.scss b/app/assets/stylesheets/application/chrome-29.scss
index 12628ae..bbeb54c 100644
--- a/app/assets/stylesheets/application/chrome-29.scss
+++ b/app/assets/stylesheets/application/chrome-29.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-30.scss b/app/assets/stylesheets/application/chrome-30.scss
index b533f60..594d668 100644
--- a/app/assets/stylesheets/application/chrome-30.scss
+++ b/app/assets/stylesheets/application/chrome-30.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-31.scss b/app/assets/stylesheets/application/chrome-31.scss
index 7b02294..5c785c3 100644
--- a/app/assets/stylesheets/application/chrome-31.scss
+++ b/app/assets/stylesheets/application/chrome-31.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-32.scss b/app/assets/stylesheets/application/chrome-32.scss
index a3fafa3..bb05492 100644
--- a/app/assets/stylesheets/application/chrome-32.scss
+++ b/app/assets/stylesheets/application/chrome-32.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-33.scss b/app/assets/stylesheets/application/chrome-33.scss
index 7923a53..98fa136 100644
--- a/app/assets/stylesheets/application/chrome-33.scss
+++ b/app/assets/stylesheets/application/chrome-33.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-34.scss b/app/assets/stylesheets/application/chrome-34.scss
index 7e13d60..be71f34 100644
--- a/app/assets/stylesheets/application/chrome-34.scss
+++ b/app/assets/stylesheets/application/chrome-34.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-35.scss b/app/assets/stylesheets/application/chrome-35.scss
index 479bca5..a64e6e3 100644
--- a/app/assets/stylesheets/application/chrome-35.scss
+++ b/app/assets/stylesheets/application/chrome-35.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-36.scss b/app/assets/stylesheets/application/chrome-36.scss
index 7e19671..1954193 100644
--- a/app/assets/stylesheets/application/chrome-36.scss
+++ b/app/assets/stylesheets/application/chrome-36.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-37.scss b/app/assets/stylesheets/application/chrome-37.scss
index 5cea973..6347c69 100644
--- a/app/assets/stylesheets/application/chrome-37.scss
+++ b/app/assets/stylesheets/application/chrome-37.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-38.scss b/app/assets/stylesheets/application/chrome-38.scss
index a6e8f0f..411f10b 100644
--- a/app/assets/stylesheets/application/chrome-38.scss
+++ b/app/assets/stylesheets/application/chrome-38.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-39.scss b/app/assets/stylesheets/application/chrome-39.scss
index 1d79d0a..32772c7 100644
--- a/app/assets/stylesheets/application/chrome-39.scss
+++ b/app/assets/stylesheets/application/chrome-39.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-4.scss b/app/assets/stylesheets/application/chrome-4.scss
index e9eddea..db622cc 100644
--- a/app/assets/stylesheets/application/chrome-4.scss
+++ b/app/assets/stylesheets/application/chrome-4.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-40.scss b/app/assets/stylesheets/application/chrome-40.scss
index 576fec8..ceb0ba2 100644
--- a/app/assets/stylesheets/application/chrome-40.scss
+++ b/app/assets/stylesheets/application/chrome-40.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-41.scss b/app/assets/stylesheets/application/chrome-41.scss
index b7acf0e..7e8945e 100644
--- a/app/assets/stylesheets/application/chrome-41.scss
+++ b/app/assets/stylesheets/application/chrome-41.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-42.scss b/app/assets/stylesheets/application/chrome-42.scss
index cff8072..71270fa 100644
--- a/app/assets/stylesheets/application/chrome-42.scss
+++ b/app/assets/stylesheets/application/chrome-42.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-43.scss b/app/assets/stylesheets/application/chrome-43.scss
index d31d748..06aa1a3 100644
--- a/app/assets/stylesheets/application/chrome-43.scss
+++ b/app/assets/stylesheets/application/chrome-43.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-44.scss b/app/assets/stylesheets/application/chrome-44.scss
index 7659a63..7b33cde 100644
--- a/app/assets/stylesheets/application/chrome-44.scss
+++ b/app/assets/stylesheets/application/chrome-44.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": nd,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-45.scss b/app/assets/stylesheets/application/chrome-45.scss
index 129878c..4775ab1 100644
--- a/app/assets/stylesheets/application/chrome-45.scss
+++ b/app/assets/stylesheets/application/chrome-45.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": y,
"link-rel-prerender": y,
+ "rest-parameters": nd,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-46.scss b/app/assets/stylesheets/application/chrome-46.scss
index d399fce..5e51952 100644
--- a/app/assets/stylesheets/application/chrome-46.scss
+++ b/app/assets/stylesheets/application/chrome-46.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": y,
"link-rel-prerender": y,
+ "rest-parameters": nd,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-47.scss b/app/assets/stylesheets/application/chrome-47.scss
index f5f92b7..462f98e 100644
--- a/app/assets/stylesheets/application/chrome-47.scss
+++ b/app/assets/stylesheets/application/chrome-47.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": y,
"link-rel-prerender": y,
+ "rest-parameters": nd,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-5.scss b/app/assets/stylesheets/application/chrome-5.scss
index 02a5204..67f86f4 100644
--- a/app/assets/stylesheets/application/chrome-5.scss
+++ b/app/assets/stylesheets/application/chrome-5.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-6.scss b/app/assets/stylesheets/application/chrome-6.scss
index f572bc4..b200f17 100644
--- a/app/assets/stylesheets/application/chrome-6.scss
+++ b/app/assets/stylesheets/application/chrome-6.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-7.scss b/app/assets/stylesheets/application/chrome-7.scss
index ec053f7..5393a4d 100644
--- a/app/assets/stylesheets/application/chrome-7.scss
+++ b/app/assets/stylesheets/application/chrome-7.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-8.scss b/app/assets/stylesheets/application/chrome-8.scss
index ee94ffd..861bb18 100644
--- a/app/assets/stylesheets/application/chrome-8.scss
+++ b/app/assets/stylesheets/application/chrome-8.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/chrome-9.scss b/app/assets/stylesheets/application/chrome-9.scss
index 8e99646..8f08c3d 100644
--- a/app/assets/stylesheets/application/chrome-9.scss
+++ b/app/assets/stylesheets/application/chrome-9.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-10.scss b/app/assets/stylesheets/application/firefox-10.scss
index 69a06a6..0f78e58 100644
--- a/app/assets/stylesheets/application/firefox-10.scss
+++ b/app/assets/stylesheets/application/firefox-10.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-11.scss b/app/assets/stylesheets/application/firefox-11.scss
index a41f54e..cc70158 100644
--- a/app/assets/stylesheets/application/firefox-11.scss
+++ b/app/assets/stylesheets/application/firefox-11.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-12.scss b/app/assets/stylesheets/application/firefox-12.scss
index cc7c7fd..c8d3df2 100644
--- a/app/assets/stylesheets/application/firefox-12.scss
+++ b/app/assets/stylesheets/application/firefox-12.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-13.scss b/app/assets/stylesheets/application/firefox-13.scss
index 3816d52..0519141 100644
--- a/app/assets/stylesheets/application/firefox-13.scss
+++ b/app/assets/stylesheets/application/firefox-13.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-14.scss b/app/assets/stylesheets/application/firefox-14.scss
index b3c08d4..1ceb613 100644
--- a/app/assets/stylesheets/application/firefox-14.scss
+++ b/app/assets/stylesheets/application/firefox-14.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-15.scss b/app/assets/stylesheets/application/firefox-15.scss
index 9a24258..de9ffb9 100644
--- a/app/assets/stylesheets/application/firefox-15.scss
+++ b/app/assets/stylesheets/application/firefox-15.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-16.scss b/app/assets/stylesheets/application/firefox-16.scss
index d886f65..bbcb9eb 100644
--- a/app/assets/stylesheets/application/firefox-16.scss
+++ b/app/assets/stylesheets/application/firefox-16.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-17.scss b/app/assets/stylesheets/application/firefox-17.scss
index d3ece60..d392ff9 100644
--- a/app/assets/stylesheets/application/firefox-17.scss
+++ b/app/assets/stylesheets/application/firefox-17.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-18.scss b/app/assets/stylesheets/application/firefox-18.scss
index ff2791d..60eb124 100644
--- a/app/assets/stylesheets/application/firefox-18.scss
+++ b/app/assets/stylesheets/application/firefox-18.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-19.scss b/app/assets/stylesheets/application/firefox-19.scss
index 1f9d5e6..013a886 100644
--- a/app/assets/stylesheets/application/firefox-19.scss
+++ b/app/assets/stylesheets/application/firefox-19.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-2.scss b/app/assets/stylesheets/application/firefox-2.scss
index 08777ea..40dddef 100644
--- a/app/assets/stylesheets/application/firefox-2.scss
+++ b/app/assets/stylesheets/application/firefox-2.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-20.scss b/app/assets/stylesheets/application/firefox-20.scss
index 936e75d..e321902 100644
--- a/app/assets/stylesheets/application/firefox-20.scss
+++ b/app/assets/stylesheets/application/firefox-20.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-21.scss b/app/assets/stylesheets/application/firefox-21.scss
index 67dcef0..c068dcf 100644
--- a/app/assets/stylesheets/application/firefox-21.scss
+++ b/app/assets/stylesheets/application/firefox-21.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-22.scss b/app/assets/stylesheets/application/firefox-22.scss
index b79a80d..3347d50 100644
--- a/app/assets/stylesheets/application/firefox-22.scss
+++ b/app/assets/stylesheets/application/firefox-22.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-23.scss b/app/assets/stylesheets/application/firefox-23.scss
index f7fb4ae..f20edb7 100644
--- a/app/assets/stylesheets/application/firefox-23.scss
+++ b/app/assets/stylesheets/application/firefox-23.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-24.scss b/app/assets/stylesheets/application/firefox-24.scss
index c2469f5..1a83c9a 100644
--- a/app/assets/stylesheets/application/firefox-24.scss
+++ b/app/assets/stylesheets/application/firefox-24.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-25.scss b/app/assets/stylesheets/application/firefox-25.scss
index 0655f2b..8bc77c3 100644
--- a/app/assets/stylesheets/application/firefox-25.scss
+++ b/app/assets/stylesheets/application/firefox-25.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-26.scss b/app/assets/stylesheets/application/firefox-26.scss
index dff1aa9..954d239 100644
--- a/app/assets/stylesheets/application/firefox-26.scss
+++ b/app/assets/stylesheets/application/firefox-26.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-27.scss b/app/assets/stylesheets/application/firefox-27.scss
index 11811cb..0e2b617 100644
--- a/app/assets/stylesheets/application/firefox-27.scss
+++ b/app/assets/stylesheets/application/firefox-27.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-28.scss b/app/assets/stylesheets/application/firefox-28.scss
index 61fe0d1..aa102e6 100644
--- a/app/assets/stylesheets/application/firefox-28.scss
+++ b/app/assets/stylesheets/application/firefox-28.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-29.scss b/app/assets/stylesheets/application/firefox-29.scss
index 036d45c..439d4c7 100644
--- a/app/assets/stylesheets/application/firefox-29.scss
+++ b/app/assets/stylesheets/application/firefox-29.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-3.5.scss b/app/assets/stylesheets/application/firefox-3.5.scss
index 1af59ba..e6115f2 100644
--- a/app/assets/stylesheets/application/firefox-3.5.scss
+++ b/app/assets/stylesheets/application/firefox-3.5.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-3.6.scss b/app/assets/stylesheets/application/firefox-3.6.scss
index 9b582d2..66662a7 100644
--- a/app/assets/stylesheets/application/firefox-3.6.scss
+++ b/app/assets/stylesheets/application/firefox-3.6.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-3.scss b/app/assets/stylesheets/application/firefox-3.scss
index 191579f..da6ce6d 100644
--- a/app/assets/stylesheets/application/firefox-3.scss
+++ b/app/assets/stylesheets/application/firefox-3.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-30.scss b/app/assets/stylesheets/application/firefox-30.scss
index cf25651..d1f6832 100644
--- a/app/assets/stylesheets/application/firefox-30.scss
+++ b/app/assets/stylesheets/application/firefox-30.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-31.scss b/app/assets/stylesheets/application/firefox-31.scss
index 82f925c..6e85e38 100644
--- a/app/assets/stylesheets/application/firefox-31.scss
+++ b/app/assets/stylesheets/application/firefox-31.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-32.scss b/app/assets/stylesheets/application/firefox-32.scss
index 2f1925f..b360433 100644
--- a/app/assets/stylesheets/application/firefox-32.scss
+++ b/app/assets/stylesheets/application/firefox-32.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-33.scss b/app/assets/stylesheets/application/firefox-33.scss
index 91c1f84..b9e7e15 100644
--- a/app/assets/stylesheets/application/firefox-33.scss
+++ b/app/assets/stylesheets/application/firefox-33.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-34.scss b/app/assets/stylesheets/application/firefox-34.scss
index 812e8b0..26d1b85 100644
--- a/app/assets/stylesheets/application/firefox-34.scss
+++ b/app/assets/stylesheets/application/firefox-34.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-35.scss b/app/assets/stylesheets/application/firefox-35.scss
index 60ad66e..36bd694 100644
--- a/app/assets/stylesheets/application/firefox-35.scss
+++ b/app/assets/stylesheets/application/firefox-35.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-36.scss b/app/assets/stylesheets/application/firefox-36.scss
index da464b9..6d7ae2b 100644
--- a/app/assets/stylesheets/application/firefox-36.scss
+++ b/app/assets/stylesheets/application/firefox-36.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": nd,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-37.scss b/app/assets/stylesheets/application/firefox-37.scss
index cfdffc5..6dd04f1 100644
--- a/app/assets/stylesheets/application/firefox-37.scss
+++ b/app/assets/stylesheets/application/firefox-37.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": nd,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-38.scss b/app/assets/stylesheets/application/firefox-38.scss
index dda8678..d68e718 100644
--- a/app/assets/stylesheets/application/firefox-38.scss
+++ b/app/assets/stylesheets/application/firefox-38.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": nd,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-39.scss b/app/assets/stylesheets/application/firefox-39.scss
index 8a087a8..c792c28 100644
--- a/app/assets/stylesheets/application/firefox-39.scss
+++ b/app/assets/stylesheets/application/firefox-39.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": nd,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-4.scss b/app/assets/stylesheets/application/firefox-4.scss
index acbf5a5..7c55545 100644
--- a/app/assets/stylesheets/application/firefox-4.scss
+++ b/app/assets/stylesheets/application/firefox-4.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-40.scss b/app/assets/stylesheets/application/firefox-40.scss
index e3602ab..7e270b4 100644
--- a/app/assets/stylesheets/application/firefox-40.scss
+++ b/app/assets/stylesheets/application/firefox-40.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": nd,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-41.scss b/app/assets/stylesheets/application/firefox-41.scss
index 26e6041..1056119 100644
--- a/app/assets/stylesheets/application/firefox-41.scss
+++ b/app/assets/stylesheets/application/firefox-41.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": y,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-42.scss b/app/assets/stylesheets/application/firefox-42.scss
index 46d2b13..da49156 100644
--- a/app/assets/stylesheets/application/firefox-42.scss
+++ b/app/assets/stylesheets/application/firefox-42.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": y,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-5.scss b/app/assets/stylesheets/application/firefox-5.scss
index 11da1ef..7953db1 100644
--- a/app/assets/stylesheets/application/firefox-5.scss
+++ b/app/assets/stylesheets/application/firefox-5.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-6.scss b/app/assets/stylesheets/application/firefox-6.scss
index cd59704..b920772 100644
--- a/app/assets/stylesheets/application/firefox-6.scss
+++ b/app/assets/stylesheets/application/firefox-6.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-7.scss b/app/assets/stylesheets/application/firefox-7.scss
index 275d8de..3e86185 100644
--- a/app/assets/stylesheets/application/firefox-7.scss
+++ b/app/assets/stylesheets/application/firefox-7.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-8.scss b/app/assets/stylesheets/application/firefox-8.scss
index bdeb71b..a2f300f 100644
--- a/app/assets/stylesheets/application/firefox-8.scss
+++ b/app/assets/stylesheets/application/firefox-8.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/firefox-9.scss b/app/assets/stylesheets/application/firefox-9.scss
index 2cdfc15..7e0efd2 100644
--- a/app/assets/stylesheets/application/firefox-9.scss
+++ b/app/assets/stylesheets/application/firefox-9.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/ie-10.scss b/app/assets/stylesheets/application/ie-10.scss
index ad240e4..80a6f5b 100644
--- a/app/assets/stylesheets/application/ie-10.scss
+++ b/app/assets/stylesheets/application/ie-10.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": y
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/ie-11.scss b/app/assets/stylesheets/application/ie-11.scss
index ab3bd33..126053e 100644
--- a/app/assets/stylesheets/application/ie-11.scss
+++ b/app/assets/stylesheets/application/ie-11.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": y,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": y
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/ie-5.5.scss b/app/assets/stylesheets/application/ie-5.5.scss
index b4fcd21..2c6036b 100644
--- a/app/assets/stylesheets/application/ie-5.5.scss
+++ b/app/assets/stylesheets/application/ie-5.5.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": u,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": n
+ "customevent": n,
+ "textcontent": n,
+ "addeventlistener": n,
+ "documenthead": n,
+ "innertext": u,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/ie-6.scss b/app/assets/stylesheets/application/ie-6.scss
index 3ec0d75..a8a17d3 100644
--- a/app/assets/stylesheets/application/ie-6.scss
+++ b/app/assets/stylesheets/application/ie-6.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": a,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": n
+ "customevent": n,
+ "textcontent": n,
+ "addeventlistener": n,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/ie-7.scss b/app/assets/stylesheets/application/ie-7.scss
index a468bc8..ec8e4fe 100644
--- a/app/assets/stylesheets/application/ie-7.scss
+++ b/app/assets/stylesheets/application/ie-7.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": a,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": n
+ "customevent": n,
+ "textcontent": n,
+ "addeventlistener": n,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/ie-8.scss b/app/assets/stylesheets/application/ie-8.scss
index aa3d02b..58c01f8 100644
--- a/app/assets/stylesheets/application/ie-8.scss
+++ b/app/assets/stylesheets/application/ie-8.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": a,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": n
+ "customevent": n,
+ "textcontent": n,
+ "addeventlistener": n,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/ie-9.scss b/app/assets/stylesheets/application/ie-9.scss
index 172dc05..ed23bb7 100644
--- a/app/assets/stylesheets/application/ie-9.scss
+++ b/app/assets/stylesheets/application/ie-9.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": a,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/ie_mob-10.scss b/app/assets/stylesheets/application/ie_mob-10.scss
index 7d626e5..be40910 100644
--- a/app/assets/stylesheets/application/ie_mob-10.scss
+++ b/app/assets/stylesheets/application/ie_mob-10.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": ax,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": y
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/ie_mob-11.scss b/app/assets/stylesheets/application/ie_mob-11.scss
index a7afb7f..cd218b3 100644
--- a/app/assets/stylesheets/application/ie_mob-11.scss
+++ b/app/assets/stylesheets/application/ie_mob-11.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": y,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": ax,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": y
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/ios_saf-3.2.scss b/app/assets/stylesheets/application/ios_saf-3.2.scss
index d9ff14f..a5635a6 100644
--- a/app/assets/stylesheets/application/ios_saf-3.2.scss
+++ b/app/assets/stylesheets/application/ios_saf-3.2.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": u,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": u,
+ "addeventlistener": y,
+ "documenthead": u,
+ "innertext": u,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/ios_saf-4.0-4.1.scss b/app/assets/stylesheets/application/ios_saf-4.0-4.1.scss
index 8ee7c04..46fd7da 100644
--- a/app/assets/stylesheets/application/ios_saf-4.0-4.1.scss
+++ b/app/assets/stylesheets/application/ios_saf-4.0-4.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/ios_saf-4.2-4.3.scss b/app/assets/stylesheets/application/ios_saf-4.2-4.3.scss
index 2658c88..e44cb9c 100644
--- a/app/assets/stylesheets/application/ios_saf-4.2-4.3.scss
+++ b/app/assets/stylesheets/application/ios_saf-4.2-4.3.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/ios_saf-5.0-5.1.scss b/app/assets/stylesheets/application/ios_saf-5.0-5.1.scss
index 4688743..42af51c 100644
--- a/app/assets/stylesheets/application/ios_saf-5.0-5.1.scss
+++ b/app/assets/stylesheets/application/ios_saf-5.0-5.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/ios_saf-6.0-6.1.scss b/app/assets/stylesheets/application/ios_saf-6.0-6.1.scss
index f8754d6..fef6060 100644
--- a/app/assets/stylesheets/application/ios_saf-6.0-6.1.scss
+++ b/app/assets/stylesheets/application/ios_saf-6.0-6.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/ios_saf-7.0-7.1.scss b/app/assets/stylesheets/application/ios_saf-7.0-7.1.scss
index fe55f86..6b56e28 100644
--- a/app/assets/stylesheets/application/ios_saf-7.0-7.1.scss
+++ b/app/assets/stylesheets/application/ios_saf-7.0-7.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/ios_saf-8.1-8.4.scss b/app/assets/stylesheets/application/ios_saf-8.1-8.4.scss
index e54c9f5..5bee30f 100644
--- a/app/assets/stylesheets/application/ios_saf-8.1-8.4.scss
+++ b/app/assets/stylesheets/application/ios_saf-8.1-8.4.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/ios_saf-8.scss b/app/assets/stylesheets/application/ios_saf-8.scss
index 7ba6dca..8c9d6c9 100644
--- a/app/assets/stylesheets/application/ios_saf-8.scss
+++ b/app/assets/stylesheets/application/ios_saf-8.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/ios_saf-9.scss b/app/assets/stylesheets/application/ios_saf-9.scss
index fb4a661..23ad42b 100644
--- a/app/assets/stylesheets/application/ios_saf-9.scss
+++ b/app/assets/stylesheets/application/ios_saf-9.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/op_mini-5.0-8.0.scss b/app/assets/stylesheets/application/op_mini-5.0-8.0.scss
index d7a25b8..254ee11 100644
--- a/app/assets/stylesheets/application/op_mini-5.0-8.0.scss
+++ b/app/assets/stylesheets/application/op_mini-5.0-8.0.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/op_mob-10.scss b/app/assets/stylesheets/application/op_mob-10.scss
index d3fab80..766bede 100644
--- a/app/assets/stylesheets/application/op_mob-10.scss
+++ b/app/assets/stylesheets/application/op_mob-10.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/op_mob-11.1.scss b/app/assets/stylesheets/application/op_mob-11.1.scss
index cb7f071..dad09ab 100644
--- a/app/assets/stylesheets/application/op_mob-11.1.scss
+++ b/app/assets/stylesheets/application/op_mob-11.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/op_mob-11.5.scss b/app/assets/stylesheets/application/op_mob-11.5.scss
index 1cec446..73d6c0b 100644
--- a/app/assets/stylesheets/application/op_mob-11.5.scss
+++ b/app/assets/stylesheets/application/op_mob-11.5.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/op_mob-11.scss b/app/assets/stylesheets/application/op_mob-11.scss
index a70a2b2..917aa1f 100644
--- a/app/assets/stylesheets/application/op_mob-11.scss
+++ b/app/assets/stylesheets/application/op_mob-11.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/op_mob-12.1.scss b/app/assets/stylesheets/application/op_mob-12.1.scss
index 42b8da1..636d465 100644
--- a/app/assets/stylesheets/application/op_mob-12.1.scss
+++ b/app/assets/stylesheets/application/op_mob-12.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/op_mob-12.scss b/app/assets/stylesheets/application/op_mob-12.scss
index be94357..91b549b 100644
--- a/app/assets/stylesheets/application/op_mob-12.scss
+++ b/app/assets/stylesheets/application/op_mob-12.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/op_mob-30.scss b/app/assets/stylesheets/application/op_mob-30.scss
index 3e7fcff..dc4e70c 100644
--- a/app/assets/stylesheets/application/op_mob-30.scss
+++ b/app/assets/stylesheets/application/op_mob-30.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": y,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-10.0-10.1.scss b/app/assets/stylesheets/application/opera-10.0-10.1.scss
index 8f16379..78ef6ff 100644
--- a/app/assets/stylesheets/application/opera-10.0-10.1.scss
+++ b/app/assets/stylesheets/application/opera-10.0-10.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-10.5.scss b/app/assets/stylesheets/application/opera-10.5.scss
index 91445ec..5dab8e2 100644
--- a/app/assets/stylesheets/application/opera-10.5.scss
+++ b/app/assets/stylesheets/application/opera-10.5.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-10.6.scss b/app/assets/stylesheets/application/opera-10.6.scss
index 73d7586..c779ca2 100644
--- a/app/assets/stylesheets/application/opera-10.6.scss
+++ b/app/assets/stylesheets/application/opera-10.6.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-11.1.scss b/app/assets/stylesheets/application/opera-11.1.scss
index 95b50e6..fb52d26 100644
--- a/app/assets/stylesheets/application/opera-11.1.scss
+++ b/app/assets/stylesheets/application/opera-11.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-11.5.scss b/app/assets/stylesheets/application/opera-11.5.scss
index 730fa70..87a699f 100644
--- a/app/assets/stylesheets/application/opera-11.5.scss
+++ b/app/assets/stylesheets/application/opera-11.5.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-11.6.scss b/app/assets/stylesheets/application/opera-11.6.scss
index 0027221..806f2cf 100644
--- a/app/assets/stylesheets/application/opera-11.6.scss
+++ b/app/assets/stylesheets/application/opera-11.6.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-11.scss b/app/assets/stylesheets/application/opera-11.scss
index 87eb854..c5d7221 100644
--- a/app/assets/stylesheets/application/opera-11.scss
+++ b/app/assets/stylesheets/application/opera-11.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-12.1.scss b/app/assets/stylesheets/application/opera-12.1.scss
index b6c10ae..5255c2a 100644
--- a/app/assets/stylesheets/application/opera-12.1.scss
+++ b/app/assets/stylesheets/application/opera-12.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-12.scss b/app/assets/stylesheets/application/opera-12.scss
index 7832c09..2535531 100644
--- a/app/assets/stylesheets/application/opera-12.scss
+++ b/app/assets/stylesheets/application/opera-12.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-15.scss b/app/assets/stylesheets/application/opera-15.scss
index 394d81e..c5708d0 100644
--- a/app/assets/stylesheets/application/opera-15.scss
+++ b/app/assets/stylesheets/application/opera-15.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-16.scss b/app/assets/stylesheets/application/opera-16.scss
index 79bbf77..24349dc 100644
--- a/app/assets/stylesheets/application/opera-16.scss
+++ b/app/assets/stylesheets/application/opera-16.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-17.scss b/app/assets/stylesheets/application/opera-17.scss
index dd93917..945bd69 100644
--- a/app/assets/stylesheets/application/opera-17.scss
+++ b/app/assets/stylesheets/application/opera-17.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-18.scss b/app/assets/stylesheets/application/opera-18.scss
index a5843b1..baa1b0a 100644
--- a/app/assets/stylesheets/application/opera-18.scss
+++ b/app/assets/stylesheets/application/opera-18.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-19.scss b/app/assets/stylesheets/application/opera-19.scss
index 05811d5..6adb77c 100644
--- a/app/assets/stylesheets/application/opera-19.scss
+++ b/app/assets/stylesheets/application/opera-19.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-20.scss b/app/assets/stylesheets/application/opera-20.scss
index 5772623..4a558bc 100644
--- a/app/assets/stylesheets/application/opera-20.scss
+++ b/app/assets/stylesheets/application/opera-20.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-21.scss b/app/assets/stylesheets/application/opera-21.scss
index 4700434..dbc3715 100644
--- a/app/assets/stylesheets/application/opera-21.scss
+++ b/app/assets/stylesheets/application/opera-21.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-22.scss b/app/assets/stylesheets/application/opera-22.scss
index 1cd364b..1a0bc6b 100644
--- a/app/assets/stylesheets/application/opera-22.scss
+++ b/app/assets/stylesheets/application/opera-22.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-23.scss b/app/assets/stylesheets/application/opera-23.scss
index 98ff19e..64c02a4 100644
--- a/app/assets/stylesheets/application/opera-23.scss
+++ b/app/assets/stylesheets/application/opera-23.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-24.scss b/app/assets/stylesheets/application/opera-24.scss
index 16cc6c8..d26a08f 100644
--- a/app/assets/stylesheets/application/opera-24.scss
+++ b/app/assets/stylesheets/application/opera-24.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-25.scss b/app/assets/stylesheets/application/opera-25.scss
index c0126f3..4dd868b 100644
--- a/app/assets/stylesheets/application/opera-25.scss
+++ b/app/assets/stylesheets/application/opera-25.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-26.scss b/app/assets/stylesheets/application/opera-26.scss
index 9cdc5a1..b7b7507 100644
--- a/app/assets/stylesheets/application/opera-26.scss
+++ b/app/assets/stylesheets/application/opera-26.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-27.scss b/app/assets/stylesheets/application/opera-27.scss
index d234ac2..0df0cf2 100644
--- a/app/assets/stylesheets/application/opera-27.scss
+++ b/app/assets/stylesheets/application/opera-27.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-28.scss b/app/assets/stylesheets/application/opera-28.scss
index a60c6b2..c8fb1fc 100644
--- a/app/assets/stylesheets/application/opera-28.scss
+++ b/app/assets/stylesheets/application/opera-28.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-29.scss b/app/assets/stylesheets/application/opera-29.scss
index a175589..7b6fa70 100644
--- a/app/assets/stylesheets/application/opera-29.scss
+++ b/app/assets/stylesheets/application/opera-29.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-30.scss b/app/assets/stylesheets/application/opera-30.scss
index 790d72a..c978f85 100644
--- a/app/assets/stylesheets/application/opera-30.scss
+++ b/app/assets/stylesheets/application/opera-30.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-31.scss b/app/assets/stylesheets/application/opera-31.scss
index 9fa455c..ea7e6c2 100644
--- a/app/assets/stylesheets/application/opera-31.scss
+++ b/app/assets/stylesheets/application/opera-31.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": nd,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-32.scss b/app/assets/stylesheets/application/opera-32.scss
index cadab08..94b30c1 100644
--- a/app/assets/stylesheets/application/opera-32.scss
+++ b/app/assets/stylesheets/application/opera-32.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": y,
"link-rel-prerender": y,
+ "rest-parameters": nd,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-9.5-9.6.scss b/app/assets/stylesheets/application/opera-9.5-9.6.scss
index 098d786..d10d31b 100644
--- a/app/assets/stylesheets/application/opera-9.5-9.6.scss
+++ b/app/assets/stylesheets/application/opera-9.5-9.6.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": u,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/opera-9.scss b/app/assets/stylesheets/application/opera-9.scss
index 33a7ad5..ca5fa27 100644
--- a/app/assets/stylesheets/application/opera-9.scss
+++ b/app/assets/stylesheets/application/opera-9.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": u,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": u,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": u,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/safari-3.1.scss b/app/assets/stylesheets/application/safari-3.1.scss
index 4cef226..8a97901 100644
--- a/app/assets/stylesheets/application/safari-3.1.scss
+++ b/app/assets/stylesheets/application/safari-3.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": u,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": u,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/safari-3.2.scss b/app/assets/stylesheets/application/safari-3.2.scss
index 4c2e44c..46102a8 100644
--- a/app/assets/stylesheets/application/safari-3.2.scss
+++ b/app/assets/stylesheets/application/safari-3.2.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/safari-4.scss b/app/assets/stylesheets/application/safari-4.scss
index d2b7382..c082f7b 100644
--- a/app/assets/stylesheets/application/safari-4.scss
+++ b/app/assets/stylesheets/application/safari-4.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/safari-5.1.scss b/app/assets/stylesheets/application/safari-5.1.scss
index ac07638..233d7b1 100644
--- a/app/assets/stylesheets/application/safari-5.1.scss
+++ b/app/assets/stylesheets/application/safari-5.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/safari-5.scss b/app/assets/stylesheets/application/safari-5.scss
index d9f7459..021b753 100644
--- a/app/assets/stylesheets/application/safari-5.scss
+++ b/app/assets/stylesheets/application/safari-5.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": u,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/safari-6.1.scss b/app/assets/stylesheets/application/safari-6.1.scss
index 448993e..45841b5 100644
--- a/app/assets/stylesheets/application/safari-6.1.scss
+++ b/app/assets/stylesheets/application/safari-6.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/safari-6.scss b/app/assets/stylesheets/application/safari-6.scss
index 14f6319..89ae34d 100644
--- a/app/assets/stylesheets/application/safari-6.scss
+++ b/app/assets/stylesheets/application/safari-6.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/safari-7.1.scss b/app/assets/stylesheets/application/safari-7.1.scss
index ed21cff..eb5977a 100644
--- a/app/assets/stylesheets/application/safari-7.1.scss
+++ b/app/assets/stylesheets/application/safari-7.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/safari-7.scss b/app/assets/stylesheets/application/safari-7.scss
index f8a5f12..38c75fb 100644
--- a/app/assets/stylesheets/application/safari-7.scss
+++ b/app/assets/stylesheets/application/safari-7.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/safari-8.scss b/app/assets/stylesheets/application/safari-8.scss
index 70b97e7..ea0ec87 100644
--- a/app/assets/stylesheets/application/safari-8.scss
+++ b/app/assets/stylesheets/application/safari-8.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/application/safari-9.scss b/app/assets/stylesheets/application/safari-9.scss
index f234fed..bf48af5 100644
--- a/app/assets/stylesheets/application/safari-9.scss
+++ b/app/assets/stylesheets/application/safari-9.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/and_uc-9.9.scss b/app/assets/stylesheets/translations/and_uc-9.9.scss
index f40f11a..22da9f0 100644
--- a/app/assets/stylesheets/translations/and_uc-9.9.scss
+++ b/app/assets/stylesheets/translations/and_uc-9.9.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/android-2.1.scss b/app/assets/stylesheets/translations/android-2.1.scss
index 28bd446..d008662 100644
--- a/app/assets/stylesheets/translations/android-2.1.scss
+++ b/app/assets/stylesheets/translations/android-2.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": u,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": u,
+ "addeventlistener": y,
+ "documenthead": u,
+ "innertext": u,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/android-2.2.scss b/app/assets/stylesheets/translations/android-2.2.scss
index e7cd586..ac5cf38 100644
--- a/app/assets/stylesheets/translations/android-2.2.scss
+++ b/app/assets/stylesheets/translations/android-2.2.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": u,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": u,
+ "addeventlistener": y,
+ "documenthead": u,
+ "innertext": u,
+ "netinfo": a,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/android-2.3.scss b/app/assets/stylesheets/translations/android-2.3.scss
index 4e4c778..86ac0a9 100644
--- a/app/assets/stylesheets/translations/android-2.3.scss
+++ b/app/assets/stylesheets/translations/android-2.3.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": a,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/android-3.scss b/app/assets/stylesheets/translations/android-3.scss
index ec49285..eab24f2 100644
--- a/app/assets/stylesheets/translations/android-3.scss
+++ b/app/assets/stylesheets/translations/android-3.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": a,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/android-4.1.scss b/app/assets/stylesheets/translations/android-4.1.scss
index d527657..ebac991 100644
--- a/app/assets/stylesheets/translations/android-4.1.scss
+++ b/app/assets/stylesheets/translations/android-4.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": a,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/android-4.2-4.3.scss b/app/assets/stylesheets/translations/android-4.2-4.3.scss
index ee67c73..8692eda 100644
--- a/app/assets/stylesheets/translations/android-4.2-4.3.scss
+++ b/app/assets/stylesheets/translations/android-4.2-4.3.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": a,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/android-4.4.3-4.4.4.scss b/app/assets/stylesheets/translations/android-4.4.3-4.4.4.scss
index 0a9ca1f..8bbf133 100644
--- a/app/assets/stylesheets/translations/android-4.4.3-4.4.4.scss
+++ b/app/assets/stylesheets/translations/android-4.4.3-4.4.4.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/android-4.4.scss b/app/assets/stylesheets/translations/android-4.4.scss
index 2939d26..577c656 100644
--- a/app/assets/stylesheets/translations/android-4.4.scss
+++ b/app/assets/stylesheets/translations/android-4.4.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/android-4.scss b/app/assets/stylesheets/translations/android-4.scss
index 4f15370..c00da89 100644
--- a/app/assets/stylesheets/translations/android-4.scss
+++ b/app/assets/stylesheets/translations/android-4.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": a,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/bb-10.scss b/app/assets/stylesheets/translations/bb-10.scss
index 317b6fe..6a3cf12 100644
--- a/app/assets/stylesheets/translations/bb-10.scss
+++ b/app/assets/stylesheets/translations/bb-10.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/bb-7.scss b/app/assets/stylesheets/translations/bb-7.scss
index 352a703..dc7d166 100644
--- a/app/assets/stylesheets/translations/bb-7.scss
+++ b/app/assets/stylesheets/translations/bb-7.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-10.scss b/app/assets/stylesheets/translations/chrome-10.scss
index b59f4c8..7c4b305 100644
--- a/app/assets/stylesheets/translations/chrome-10.scss
+++ b/app/assets/stylesheets/translations/chrome-10.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-11.scss b/app/assets/stylesheets/translations/chrome-11.scss
index 5b187d6..8e6ceb9 100644
--- a/app/assets/stylesheets/translations/chrome-11.scss
+++ b/app/assets/stylesheets/translations/chrome-11.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-12.scss b/app/assets/stylesheets/translations/chrome-12.scss
index 650f39e..9518ea1 100644
--- a/app/assets/stylesheets/translations/chrome-12.scss
+++ b/app/assets/stylesheets/translations/chrome-12.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-13.scss b/app/assets/stylesheets/translations/chrome-13.scss
index c042e2b..113fac0 100644
--- a/app/assets/stylesheets/translations/chrome-13.scss
+++ b/app/assets/stylesheets/translations/chrome-13.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-14.scss b/app/assets/stylesheets/translations/chrome-14.scss
index a53b62b..4c32541 100644
--- a/app/assets/stylesheets/translations/chrome-14.scss
+++ b/app/assets/stylesheets/translations/chrome-14.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-15.scss b/app/assets/stylesheets/translations/chrome-15.scss
index d85f724..58763e5 100644
--- a/app/assets/stylesheets/translations/chrome-15.scss
+++ b/app/assets/stylesheets/translations/chrome-15.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-16.scss b/app/assets/stylesheets/translations/chrome-16.scss
index 0edb089..939d150 100644
--- a/app/assets/stylesheets/translations/chrome-16.scss
+++ b/app/assets/stylesheets/translations/chrome-16.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-17.scss b/app/assets/stylesheets/translations/chrome-17.scss
index c96525e..2592c9c 100644
--- a/app/assets/stylesheets/translations/chrome-17.scss
+++ b/app/assets/stylesheets/translations/chrome-17.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-18.scss b/app/assets/stylesheets/translations/chrome-18.scss
index bc02554..d1d381c 100644
--- a/app/assets/stylesheets/translations/chrome-18.scss
+++ b/app/assets/stylesheets/translations/chrome-18.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-19.scss b/app/assets/stylesheets/translations/chrome-19.scss
index 1dfaa9d..1c1ef71 100644
--- a/app/assets/stylesheets/translations/chrome-19.scss
+++ b/app/assets/stylesheets/translations/chrome-19.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-20.scss b/app/assets/stylesheets/translations/chrome-20.scss
index d93a77f..e4335ba 100644
--- a/app/assets/stylesheets/translations/chrome-20.scss
+++ b/app/assets/stylesheets/translations/chrome-20.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-21.scss b/app/assets/stylesheets/translations/chrome-21.scss
index 6dbb7f6..75360d3 100644
--- a/app/assets/stylesheets/translations/chrome-21.scss
+++ b/app/assets/stylesheets/translations/chrome-21.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-22.scss b/app/assets/stylesheets/translations/chrome-22.scss
index eeeef9c..36e7f97 100644
--- a/app/assets/stylesheets/translations/chrome-22.scss
+++ b/app/assets/stylesheets/translations/chrome-22.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-23.scss b/app/assets/stylesheets/translations/chrome-23.scss
index c800913..d744bfe 100644
--- a/app/assets/stylesheets/translations/chrome-23.scss
+++ b/app/assets/stylesheets/translations/chrome-23.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-24.scss b/app/assets/stylesheets/translations/chrome-24.scss
index e84d692..2372a97 100644
--- a/app/assets/stylesheets/translations/chrome-24.scss
+++ b/app/assets/stylesheets/translations/chrome-24.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-25.scss b/app/assets/stylesheets/translations/chrome-25.scss
index eedb59e..c06a229 100644
--- a/app/assets/stylesheets/translations/chrome-25.scss
+++ b/app/assets/stylesheets/translations/chrome-25.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-26.scss b/app/assets/stylesheets/translations/chrome-26.scss
index 3b96101..e3f6538 100644
--- a/app/assets/stylesheets/translations/chrome-26.scss
+++ b/app/assets/stylesheets/translations/chrome-26.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-27.scss b/app/assets/stylesheets/translations/chrome-27.scss
index 60ac837..4f2c910 100644
--- a/app/assets/stylesheets/translations/chrome-27.scss
+++ b/app/assets/stylesheets/translations/chrome-27.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-28.scss b/app/assets/stylesheets/translations/chrome-28.scss
index 0d970ab..183acde 100644
--- a/app/assets/stylesheets/translations/chrome-28.scss
+++ b/app/assets/stylesheets/translations/chrome-28.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-29.scss b/app/assets/stylesheets/translations/chrome-29.scss
index 6e0762f..eb7b935 100644
--- a/app/assets/stylesheets/translations/chrome-29.scss
+++ b/app/assets/stylesheets/translations/chrome-29.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-30.scss b/app/assets/stylesheets/translations/chrome-30.scss
index 0feb455..c548b91 100644
--- a/app/assets/stylesheets/translations/chrome-30.scss
+++ b/app/assets/stylesheets/translations/chrome-30.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-31.scss b/app/assets/stylesheets/translations/chrome-31.scss
index 9818613..2bcf2d7 100644
--- a/app/assets/stylesheets/translations/chrome-31.scss
+++ b/app/assets/stylesheets/translations/chrome-31.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-32.scss b/app/assets/stylesheets/translations/chrome-32.scss
index 51745a9..603a3c0 100644
--- a/app/assets/stylesheets/translations/chrome-32.scss
+++ b/app/assets/stylesheets/translations/chrome-32.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-33.scss b/app/assets/stylesheets/translations/chrome-33.scss
index beba467..e8c4b4a 100644
--- a/app/assets/stylesheets/translations/chrome-33.scss
+++ b/app/assets/stylesheets/translations/chrome-33.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-34.scss b/app/assets/stylesheets/translations/chrome-34.scss
index 30db199..03c01a9 100644
--- a/app/assets/stylesheets/translations/chrome-34.scss
+++ b/app/assets/stylesheets/translations/chrome-34.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-35.scss b/app/assets/stylesheets/translations/chrome-35.scss
index f44fb5a..2af68d2 100644
--- a/app/assets/stylesheets/translations/chrome-35.scss
+++ b/app/assets/stylesheets/translations/chrome-35.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-36.scss b/app/assets/stylesheets/translations/chrome-36.scss
index bcc4b11..04e9f87 100644
--- a/app/assets/stylesheets/translations/chrome-36.scss
+++ b/app/assets/stylesheets/translations/chrome-36.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-37.scss b/app/assets/stylesheets/translations/chrome-37.scss
index 9b4f453..c67dc66 100644
--- a/app/assets/stylesheets/translations/chrome-37.scss
+++ b/app/assets/stylesheets/translations/chrome-37.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-38.scss b/app/assets/stylesheets/translations/chrome-38.scss
index 7eb68af..9d3fb5b 100644
--- a/app/assets/stylesheets/translations/chrome-38.scss
+++ b/app/assets/stylesheets/translations/chrome-38.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-39.scss b/app/assets/stylesheets/translations/chrome-39.scss
index 540d314..c556022 100644
--- a/app/assets/stylesheets/translations/chrome-39.scss
+++ b/app/assets/stylesheets/translations/chrome-39.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-4.scss b/app/assets/stylesheets/translations/chrome-4.scss
index 3b7bd61..1214a90 100644
--- a/app/assets/stylesheets/translations/chrome-4.scss
+++ b/app/assets/stylesheets/translations/chrome-4.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-40.scss b/app/assets/stylesheets/translations/chrome-40.scss
index c25a336..20dab00 100644
--- a/app/assets/stylesheets/translations/chrome-40.scss
+++ b/app/assets/stylesheets/translations/chrome-40.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-41.scss b/app/assets/stylesheets/translations/chrome-41.scss
index ef91c56..8ebcbd4 100644
--- a/app/assets/stylesheets/translations/chrome-41.scss
+++ b/app/assets/stylesheets/translations/chrome-41.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-42.scss b/app/assets/stylesheets/translations/chrome-42.scss
index 3dead54..9036152 100644
--- a/app/assets/stylesheets/translations/chrome-42.scss
+++ b/app/assets/stylesheets/translations/chrome-42.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-43.scss b/app/assets/stylesheets/translations/chrome-43.scss
index e949014..1e0a397 100644
--- a/app/assets/stylesheets/translations/chrome-43.scss
+++ b/app/assets/stylesheets/translations/chrome-43.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-44.scss b/app/assets/stylesheets/translations/chrome-44.scss
index d0f35ce..aac7413 100644
--- a/app/assets/stylesheets/translations/chrome-44.scss
+++ b/app/assets/stylesheets/translations/chrome-44.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": nd,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-45.scss b/app/assets/stylesheets/translations/chrome-45.scss
index 5577c96..7070b8c 100644
--- a/app/assets/stylesheets/translations/chrome-45.scss
+++ b/app/assets/stylesheets/translations/chrome-45.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": y,
"link-rel-prerender": y,
+ "rest-parameters": nd,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-46.scss b/app/assets/stylesheets/translations/chrome-46.scss
index 81aa607..18cf878 100644
--- a/app/assets/stylesheets/translations/chrome-46.scss
+++ b/app/assets/stylesheets/translations/chrome-46.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": y,
"link-rel-prerender": y,
+ "rest-parameters": nd,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-47.scss b/app/assets/stylesheets/translations/chrome-47.scss
index 2658a01..f5793da 100644
--- a/app/assets/stylesheets/translations/chrome-47.scss
+++ b/app/assets/stylesheets/translations/chrome-47.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": y,
"link-rel-prerender": y,
+ "rest-parameters": nd,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-5.scss b/app/assets/stylesheets/translations/chrome-5.scss
index 0af6487..09e621a 100644
--- a/app/assets/stylesheets/translations/chrome-5.scss
+++ b/app/assets/stylesheets/translations/chrome-5.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-6.scss b/app/assets/stylesheets/translations/chrome-6.scss
index cda06da..ef363c7 100644
--- a/app/assets/stylesheets/translations/chrome-6.scss
+++ b/app/assets/stylesheets/translations/chrome-6.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-7.scss b/app/assets/stylesheets/translations/chrome-7.scss
index 5735a03..cf4a4ee 100644
--- a/app/assets/stylesheets/translations/chrome-7.scss
+++ b/app/assets/stylesheets/translations/chrome-7.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-8.scss b/app/assets/stylesheets/translations/chrome-8.scss
index 82c0647..631f563 100644
--- a/app/assets/stylesheets/translations/chrome-8.scss
+++ b/app/assets/stylesheets/translations/chrome-8.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/chrome-9.scss b/app/assets/stylesheets/translations/chrome-9.scss
index 552700f..5c20ca2 100644
--- a/app/assets/stylesheets/translations/chrome-9.scss
+++ b/app/assets/stylesheets/translations/chrome-9.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-10.scss b/app/assets/stylesheets/translations/firefox-10.scss
index 1fdd595..e500463 100644
--- a/app/assets/stylesheets/translations/firefox-10.scss
+++ b/app/assets/stylesheets/translations/firefox-10.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-11.scss b/app/assets/stylesheets/translations/firefox-11.scss
index 8bc772e..ed56390 100644
--- a/app/assets/stylesheets/translations/firefox-11.scss
+++ b/app/assets/stylesheets/translations/firefox-11.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-12.scss b/app/assets/stylesheets/translations/firefox-12.scss
index 4b88362..fce25c9 100644
--- a/app/assets/stylesheets/translations/firefox-12.scss
+++ b/app/assets/stylesheets/translations/firefox-12.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-13.scss b/app/assets/stylesheets/translations/firefox-13.scss
index ba63824..0e00714 100644
--- a/app/assets/stylesheets/translations/firefox-13.scss
+++ b/app/assets/stylesheets/translations/firefox-13.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-14.scss b/app/assets/stylesheets/translations/firefox-14.scss
index b8fe3d3..29ad2ce 100644
--- a/app/assets/stylesheets/translations/firefox-14.scss
+++ b/app/assets/stylesheets/translations/firefox-14.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-15.scss b/app/assets/stylesheets/translations/firefox-15.scss
index a5a1f58..8c18ad3 100644
--- a/app/assets/stylesheets/translations/firefox-15.scss
+++ b/app/assets/stylesheets/translations/firefox-15.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-16.scss b/app/assets/stylesheets/translations/firefox-16.scss
index 285b360..31a5bff 100644
--- a/app/assets/stylesheets/translations/firefox-16.scss
+++ b/app/assets/stylesheets/translations/firefox-16.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-17.scss b/app/assets/stylesheets/translations/firefox-17.scss
index 1b21476..8aaf3e8 100644
--- a/app/assets/stylesheets/translations/firefox-17.scss
+++ b/app/assets/stylesheets/translations/firefox-17.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-18.scss b/app/assets/stylesheets/translations/firefox-18.scss
index 2da9e6e..4ae480f 100644
--- a/app/assets/stylesheets/translations/firefox-18.scss
+++ b/app/assets/stylesheets/translations/firefox-18.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-19.scss b/app/assets/stylesheets/translations/firefox-19.scss
index b9bb0ce..f7b90ee 100644
--- a/app/assets/stylesheets/translations/firefox-19.scss
+++ b/app/assets/stylesheets/translations/firefox-19.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-2.scss b/app/assets/stylesheets/translations/firefox-2.scss
index 9658ef5..ab153e9 100644
--- a/app/assets/stylesheets/translations/firefox-2.scss
+++ b/app/assets/stylesheets/translations/firefox-2.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-20.scss b/app/assets/stylesheets/translations/firefox-20.scss
index 112ed63..340c767 100644
--- a/app/assets/stylesheets/translations/firefox-20.scss
+++ b/app/assets/stylesheets/translations/firefox-20.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-21.scss b/app/assets/stylesheets/translations/firefox-21.scss
index 017d7f9..7752fb7 100644
--- a/app/assets/stylesheets/translations/firefox-21.scss
+++ b/app/assets/stylesheets/translations/firefox-21.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-22.scss b/app/assets/stylesheets/translations/firefox-22.scss
index 7aa24b5..ccec0a4 100644
--- a/app/assets/stylesheets/translations/firefox-22.scss
+++ b/app/assets/stylesheets/translations/firefox-22.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-23.scss b/app/assets/stylesheets/translations/firefox-23.scss
index b5acc1b..bfbe853 100644
--- a/app/assets/stylesheets/translations/firefox-23.scss
+++ b/app/assets/stylesheets/translations/firefox-23.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-24.scss b/app/assets/stylesheets/translations/firefox-24.scss
index 99eff83..e9c26e0 100644
--- a/app/assets/stylesheets/translations/firefox-24.scss
+++ b/app/assets/stylesheets/translations/firefox-24.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-25.scss b/app/assets/stylesheets/translations/firefox-25.scss
index ce1f953..b42d841 100644
--- a/app/assets/stylesheets/translations/firefox-25.scss
+++ b/app/assets/stylesheets/translations/firefox-25.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-26.scss b/app/assets/stylesheets/translations/firefox-26.scss
index 4f9384c..46f8c5d 100644
--- a/app/assets/stylesheets/translations/firefox-26.scss
+++ b/app/assets/stylesheets/translations/firefox-26.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-27.scss b/app/assets/stylesheets/translations/firefox-27.scss
index 75c00b6..dbb0ec3 100644
--- a/app/assets/stylesheets/translations/firefox-27.scss
+++ b/app/assets/stylesheets/translations/firefox-27.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-28.scss b/app/assets/stylesheets/translations/firefox-28.scss
index 9b5a24d..465d67d 100644
--- a/app/assets/stylesheets/translations/firefox-28.scss
+++ b/app/assets/stylesheets/translations/firefox-28.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-29.scss b/app/assets/stylesheets/translations/firefox-29.scss
index 7f859e3..a394cf7 100644
--- a/app/assets/stylesheets/translations/firefox-29.scss
+++ b/app/assets/stylesheets/translations/firefox-29.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-3.5.scss b/app/assets/stylesheets/translations/firefox-3.5.scss
index 74f9f83..d587b55 100644
--- a/app/assets/stylesheets/translations/firefox-3.5.scss
+++ b/app/assets/stylesheets/translations/firefox-3.5.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-3.6.scss b/app/assets/stylesheets/translations/firefox-3.6.scss
index 193e1a4..a03c7e0 100644
--- a/app/assets/stylesheets/translations/firefox-3.6.scss
+++ b/app/assets/stylesheets/translations/firefox-3.6.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-3.scss b/app/assets/stylesheets/translations/firefox-3.scss
index c2eea8d..2765e76 100644
--- a/app/assets/stylesheets/translations/firefox-3.scss
+++ b/app/assets/stylesheets/translations/firefox-3.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-30.scss b/app/assets/stylesheets/translations/firefox-30.scss
index f022adc..2b15204 100644
--- a/app/assets/stylesheets/translations/firefox-30.scss
+++ b/app/assets/stylesheets/translations/firefox-30.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-31.scss b/app/assets/stylesheets/translations/firefox-31.scss
index 46e68f3..f298cc9 100644
--- a/app/assets/stylesheets/translations/firefox-31.scss
+++ b/app/assets/stylesheets/translations/firefox-31.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-32.scss b/app/assets/stylesheets/translations/firefox-32.scss
index fe799c8..9169fe3 100644
--- a/app/assets/stylesheets/translations/firefox-32.scss
+++ b/app/assets/stylesheets/translations/firefox-32.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-33.scss b/app/assets/stylesheets/translations/firefox-33.scss
index 524e98f..a197437 100644
--- a/app/assets/stylesheets/translations/firefox-33.scss
+++ b/app/assets/stylesheets/translations/firefox-33.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-34.scss b/app/assets/stylesheets/translations/firefox-34.scss
index f2bedd4..3ea9697 100644
--- a/app/assets/stylesheets/translations/firefox-34.scss
+++ b/app/assets/stylesheets/translations/firefox-34.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-35.scss b/app/assets/stylesheets/translations/firefox-35.scss
index f61e4ce..210862c 100644
--- a/app/assets/stylesheets/translations/firefox-35.scss
+++ b/app/assets/stylesheets/translations/firefox-35.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-36.scss b/app/assets/stylesheets/translations/firefox-36.scss
index 25a9895..c8f14be 100644
--- a/app/assets/stylesheets/translations/firefox-36.scss
+++ b/app/assets/stylesheets/translations/firefox-36.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": nd,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-37.scss b/app/assets/stylesheets/translations/firefox-37.scss
index eb918e5..d7144d4 100644
--- a/app/assets/stylesheets/translations/firefox-37.scss
+++ b/app/assets/stylesheets/translations/firefox-37.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": nd,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-38.scss b/app/assets/stylesheets/translations/firefox-38.scss
index 41d4d88..ec137a3 100644
--- a/app/assets/stylesheets/translations/firefox-38.scss
+++ b/app/assets/stylesheets/translations/firefox-38.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": nd,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-39.scss b/app/assets/stylesheets/translations/firefox-39.scss
index 173621b..0dc5d76 100644
--- a/app/assets/stylesheets/translations/firefox-39.scss
+++ b/app/assets/stylesheets/translations/firefox-39.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": nd,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-4.scss b/app/assets/stylesheets/translations/firefox-4.scss
index 5254bef..07b9d1e 100644
--- a/app/assets/stylesheets/translations/firefox-4.scss
+++ b/app/assets/stylesheets/translations/firefox-4.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-40.scss b/app/assets/stylesheets/translations/firefox-40.scss
index 3a630bb..cda2531 100644
--- a/app/assets/stylesheets/translations/firefox-40.scss
+++ b/app/assets/stylesheets/translations/firefox-40.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": nd,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-41.scss b/app/assets/stylesheets/translations/firefox-41.scss
index 02952a5..d50d500 100644
--- a/app/assets/stylesheets/translations/firefox-41.scss
+++ b/app/assets/stylesheets/translations/firefox-41.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": y,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-42.scss b/app/assets/stylesheets/translations/firefox-42.scss
index 01f59f2..f5ef995 100644
--- a/app/assets/stylesheets/translations/firefox-42.scss
+++ b/app/assets/stylesheets/translations/firefox-42.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": y,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-5.scss b/app/assets/stylesheets/translations/firefox-5.scss
index 8b064c7..f917fdd 100644
--- a/app/assets/stylesheets/translations/firefox-5.scss
+++ b/app/assets/stylesheets/translations/firefox-5.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-6.scss b/app/assets/stylesheets/translations/firefox-6.scss
index 08a2a74..1e77199 100644
--- a/app/assets/stylesheets/translations/firefox-6.scss
+++ b/app/assets/stylesheets/translations/firefox-6.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-7.scss b/app/assets/stylesheets/translations/firefox-7.scss
index 2079164..bd0091a 100644
--- a/app/assets/stylesheets/translations/firefox-7.scss
+++ b/app/assets/stylesheets/translations/firefox-7.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-8.scss b/app/assets/stylesheets/translations/firefox-8.scss
index 76c2fe0..643883d 100644
--- a/app/assets/stylesheets/translations/firefox-8.scss
+++ b/app/assets/stylesheets/translations/firefox-8.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/firefox-9.scss b/app/assets/stylesheets/translations/firefox-9.scss
index 81dbed9..99ee4f0 100644
--- a/app/assets/stylesheets/translations/firefox-9.scss
+++ b/app/assets/stylesheets/translations/firefox-9.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/ie-10.scss b/app/assets/stylesheets/translations/ie-10.scss
index 66b8996..d7427cc 100644
--- a/app/assets/stylesheets/translations/ie-10.scss
+++ b/app/assets/stylesheets/translations/ie-10.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": y
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/ie-11.scss b/app/assets/stylesheets/translations/ie-11.scss
index b16f7e8..2a29f8f 100644
--- a/app/assets/stylesheets/translations/ie-11.scss
+++ b/app/assets/stylesheets/translations/ie-11.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": y,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": y
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/ie-5.5.scss b/app/assets/stylesheets/translations/ie-5.5.scss
index cbdb82b..35b72b9 100644
--- a/app/assets/stylesheets/translations/ie-5.5.scss
+++ b/app/assets/stylesheets/translations/ie-5.5.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": u,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": n
+ "customevent": n,
+ "textcontent": n,
+ "addeventlistener": n,
+ "documenthead": n,
+ "innertext": u,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/ie-6.scss b/app/assets/stylesheets/translations/ie-6.scss
index ce88ba0..3608e30 100644
--- a/app/assets/stylesheets/translations/ie-6.scss
+++ b/app/assets/stylesheets/translations/ie-6.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": a,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": n
+ "customevent": n,
+ "textcontent": n,
+ "addeventlistener": n,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/ie-7.scss b/app/assets/stylesheets/translations/ie-7.scss
index af3ccb9..178532c 100644
--- a/app/assets/stylesheets/translations/ie-7.scss
+++ b/app/assets/stylesheets/translations/ie-7.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": a,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": n
+ "customevent": n,
+ "textcontent": n,
+ "addeventlistener": n,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/ie-8.scss b/app/assets/stylesheets/translations/ie-8.scss
index 5e9a617..747d8bb 100644
--- a/app/assets/stylesheets/translations/ie-8.scss
+++ b/app/assets/stylesheets/translations/ie-8.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": a,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": n
+ "customevent": n,
+ "textcontent": n,
+ "addeventlistener": n,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/ie-9.scss b/app/assets/stylesheets/translations/ie-9.scss
index 2016afc..136225f 100644
--- a/app/assets/stylesheets/translations/ie-9.scss
+++ b/app/assets/stylesheets/translations/ie-9.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": a,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/ie_mob-10.scss b/app/assets/stylesheets/translations/ie_mob-10.scss
index 6999c0a..4150cd1 100644
--- a/app/assets/stylesheets/translations/ie_mob-10.scss
+++ b/app/assets/stylesheets/translations/ie_mob-10.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": ax,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": y
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/ie_mob-11.scss b/app/assets/stylesheets/translations/ie_mob-11.scss
index 74732d2..9e2c2d0 100644
--- a/app/assets/stylesheets/translations/ie_mob-11.scss
+++ b/app/assets/stylesheets/translations/ie_mob-11.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": y,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": ax,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": y
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/ios_saf-3.2.scss b/app/assets/stylesheets/translations/ios_saf-3.2.scss
index a7c49bf..2d57ac8 100644
--- a/app/assets/stylesheets/translations/ios_saf-3.2.scss
+++ b/app/assets/stylesheets/translations/ios_saf-3.2.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": u,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": u,
+ "addeventlistener": y,
+ "documenthead": u,
+ "innertext": u,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/ios_saf-4.0-4.1.scss b/app/assets/stylesheets/translations/ios_saf-4.0-4.1.scss
index 9a35a15..4cc410f 100644
--- a/app/assets/stylesheets/translations/ios_saf-4.0-4.1.scss
+++ b/app/assets/stylesheets/translations/ios_saf-4.0-4.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/ios_saf-4.2-4.3.scss b/app/assets/stylesheets/translations/ios_saf-4.2-4.3.scss
index e2a224f..4fb6e4d 100644
--- a/app/assets/stylesheets/translations/ios_saf-4.2-4.3.scss
+++ b/app/assets/stylesheets/translations/ios_saf-4.2-4.3.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/ios_saf-5.0-5.1.scss b/app/assets/stylesheets/translations/ios_saf-5.0-5.1.scss
index 727e2e8..d996adc 100644
--- a/app/assets/stylesheets/translations/ios_saf-5.0-5.1.scss
+++ b/app/assets/stylesheets/translations/ios_saf-5.0-5.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/ios_saf-6.0-6.1.scss b/app/assets/stylesheets/translations/ios_saf-6.0-6.1.scss
index fd58236..5e931fd 100644
--- a/app/assets/stylesheets/translations/ios_saf-6.0-6.1.scss
+++ b/app/assets/stylesheets/translations/ios_saf-6.0-6.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/ios_saf-7.0-7.1.scss b/app/assets/stylesheets/translations/ios_saf-7.0-7.1.scss
index c1719ff..3a9b753 100644
--- a/app/assets/stylesheets/translations/ios_saf-7.0-7.1.scss
+++ b/app/assets/stylesheets/translations/ios_saf-7.0-7.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/ios_saf-8.1-8.4.scss b/app/assets/stylesheets/translations/ios_saf-8.1-8.4.scss
index 59c9080..82bece7 100644
--- a/app/assets/stylesheets/translations/ios_saf-8.1-8.4.scss
+++ b/app/assets/stylesheets/translations/ios_saf-8.1-8.4.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/ios_saf-8.scss b/app/assets/stylesheets/translations/ios_saf-8.scss
index f7c3aa0..9aee48a 100644
--- a/app/assets/stylesheets/translations/ios_saf-8.scss
+++ b/app/assets/stylesheets/translations/ios_saf-8.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/ios_saf-9.scss b/app/assets/stylesheets/translations/ios_saf-9.scss
index 1835b65..66c86a2 100644
--- a/app/assets/stylesheets/translations/ios_saf-9.scss
+++ b/app/assets/stylesheets/translations/ios_saf-9.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/op_mini-5.0-8.0.scss b/app/assets/stylesheets/translations/op_mini-5.0-8.0.scss
index 583411e..38d9f5a 100644
--- a/app/assets/stylesheets/translations/op_mini-5.0-8.0.scss
+++ b/app/assets/stylesheets/translations/op_mini-5.0-8.0.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/op_mob-10.scss b/app/assets/stylesheets/translations/op_mob-10.scss
index d64158f..7225ebf 100644
--- a/app/assets/stylesheets/translations/op_mob-10.scss
+++ b/app/assets/stylesheets/translations/op_mob-10.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/op_mob-11.1.scss b/app/assets/stylesheets/translations/op_mob-11.1.scss
index 58d0d87..165383d 100644
--- a/app/assets/stylesheets/translations/op_mob-11.1.scss
+++ b/app/assets/stylesheets/translations/op_mob-11.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/op_mob-11.5.scss b/app/assets/stylesheets/translations/op_mob-11.5.scss
index 0dbdbcc..2ed47df 100644
--- a/app/assets/stylesheets/translations/op_mob-11.5.scss
+++ b/app/assets/stylesheets/translations/op_mob-11.5.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/op_mob-11.scss b/app/assets/stylesheets/translations/op_mob-11.scss
index e4854ee..066207e 100644
--- a/app/assets/stylesheets/translations/op_mob-11.scss
+++ b/app/assets/stylesheets/translations/op_mob-11.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/op_mob-12.1.scss b/app/assets/stylesheets/translations/op_mob-12.1.scss
index 1bdfc31..d175f67 100644
--- a/app/assets/stylesheets/translations/op_mob-12.1.scss
+++ b/app/assets/stylesheets/translations/op_mob-12.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/op_mob-12.scss b/app/assets/stylesheets/translations/op_mob-12.scss
index a7d2a81..ed5e913 100644
--- a/app/assets/stylesheets/translations/op_mob-12.scss
+++ b/app/assets/stylesheets/translations/op_mob-12.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/op_mob-30.scss b/app/assets/stylesheets/translations/op_mob-30.scss
index b292587..41d1ba3 100644
--- a/app/assets/stylesheets/translations/op_mob-30.scss
+++ b/app/assets/stylesheets/translations/op_mob-30.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": y,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-10.0-10.1.scss b/app/assets/stylesheets/translations/opera-10.0-10.1.scss
index c45d8a2..9930525 100644
--- a/app/assets/stylesheets/translations/opera-10.0-10.1.scss
+++ b/app/assets/stylesheets/translations/opera-10.0-10.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-10.5.scss b/app/assets/stylesheets/translations/opera-10.5.scss
index 8f60b7c..135cdcb 100644
--- a/app/assets/stylesheets/translations/opera-10.5.scss
+++ b/app/assets/stylesheets/translations/opera-10.5.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-10.6.scss b/app/assets/stylesheets/translations/opera-10.6.scss
index bcf4fb6..ddb92e5 100644
--- a/app/assets/stylesheets/translations/opera-10.6.scss
+++ b/app/assets/stylesheets/translations/opera-10.6.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-11.1.scss b/app/assets/stylesheets/translations/opera-11.1.scss
index 6c102bc..216f076 100644
--- a/app/assets/stylesheets/translations/opera-11.1.scss
+++ b/app/assets/stylesheets/translations/opera-11.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-11.5.scss b/app/assets/stylesheets/translations/opera-11.5.scss
index 1d6eeda..40cd42e 100644
--- a/app/assets/stylesheets/translations/opera-11.5.scss
+++ b/app/assets/stylesheets/translations/opera-11.5.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-11.6.scss b/app/assets/stylesheets/translations/opera-11.6.scss
index 9aa37f6..0c0b3b2 100644
--- a/app/assets/stylesheets/translations/opera-11.6.scss
+++ b/app/assets/stylesheets/translations/opera-11.6.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-11.scss b/app/assets/stylesheets/translations/opera-11.scss
index 541757f..ec7c2f2 100644
--- a/app/assets/stylesheets/translations/opera-11.scss
+++ b/app/assets/stylesheets/translations/opera-11.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-12.1.scss b/app/assets/stylesheets/translations/opera-12.1.scss
index d8520a4..8dbe89a 100644
--- a/app/assets/stylesheets/translations/opera-12.1.scss
+++ b/app/assets/stylesheets/translations/opera-12.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-12.scss b/app/assets/stylesheets/translations/opera-12.scss
index e08a382..dd95063 100644
--- a/app/assets/stylesheets/translations/opera-12.scss
+++ b/app/assets/stylesheets/translations/opera-12.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-15.scss b/app/assets/stylesheets/translations/opera-15.scss
index a7b084d..aa84b62 100644
--- a/app/assets/stylesheets/translations/opera-15.scss
+++ b/app/assets/stylesheets/translations/opera-15.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-16.scss b/app/assets/stylesheets/translations/opera-16.scss
index 2c49d6f..9ceb768 100644
--- a/app/assets/stylesheets/translations/opera-16.scss
+++ b/app/assets/stylesheets/translations/opera-16.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-17.scss b/app/assets/stylesheets/translations/opera-17.scss
index 27435ed..935bba2 100644
--- a/app/assets/stylesheets/translations/opera-17.scss
+++ b/app/assets/stylesheets/translations/opera-17.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-18.scss b/app/assets/stylesheets/translations/opera-18.scss
index 45af01e..dad2fe3 100644
--- a/app/assets/stylesheets/translations/opera-18.scss
+++ b/app/assets/stylesheets/translations/opera-18.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-19.scss b/app/assets/stylesheets/translations/opera-19.scss
index 20c030e..47d40a4 100644
--- a/app/assets/stylesheets/translations/opera-19.scss
+++ b/app/assets/stylesheets/translations/opera-19.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-20.scss b/app/assets/stylesheets/translations/opera-20.scss
index 040a7a0..f55bf3f 100644
--- a/app/assets/stylesheets/translations/opera-20.scss
+++ b/app/assets/stylesheets/translations/opera-20.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-21.scss b/app/assets/stylesheets/translations/opera-21.scss
index 3c3a1c7..eaf349f 100644
--- a/app/assets/stylesheets/translations/opera-21.scss
+++ b/app/assets/stylesheets/translations/opera-21.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-22.scss b/app/assets/stylesheets/translations/opera-22.scss
index 5d3dd14..054624c 100644
--- a/app/assets/stylesheets/translations/opera-22.scss
+++ b/app/assets/stylesheets/translations/opera-22.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-23.scss b/app/assets/stylesheets/translations/opera-23.scss
index f9e99b5..2d5ff7f 100644
--- a/app/assets/stylesheets/translations/opera-23.scss
+++ b/app/assets/stylesheets/translations/opera-23.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-24.scss b/app/assets/stylesheets/translations/opera-24.scss
index 9f0db3a..3bfff7a 100644
--- a/app/assets/stylesheets/translations/opera-24.scss
+++ b/app/assets/stylesheets/translations/opera-24.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-25.scss b/app/assets/stylesheets/translations/opera-25.scss
index de0172d..8e09e59 100644
--- a/app/assets/stylesheets/translations/opera-25.scss
+++ b/app/assets/stylesheets/translations/opera-25.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-26.scss b/app/assets/stylesheets/translations/opera-26.scss
index d57b803..b2a479c 100644
--- a/app/assets/stylesheets/translations/opera-26.scss
+++ b/app/assets/stylesheets/translations/opera-26.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-27.scss b/app/assets/stylesheets/translations/opera-27.scss
index c36bd78..57f6bcc 100644
--- a/app/assets/stylesheets/translations/opera-27.scss
+++ b/app/assets/stylesheets/translations/opera-27.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-28.scss b/app/assets/stylesheets/translations/opera-28.scss
index eae318f..2682200 100644
--- a/app/assets/stylesheets/translations/opera-28.scss
+++ b/app/assets/stylesheets/translations/opera-28.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-29.scss b/app/assets/stylesheets/translations/opera-29.scss
index 25a508e..60f1c99 100644
--- a/app/assets/stylesheets/translations/opera-29.scss
+++ b/app/assets/stylesheets/translations/opera-29.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-30.scss b/app/assets/stylesheets/translations/opera-30.scss
index 5c9e207..cc65e12 100644
--- a/app/assets/stylesheets/translations/opera-30.scss
+++ b/app/assets/stylesheets/translations/opera-30.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-31.scss b/app/assets/stylesheets/translations/opera-31.scss
index 78f3c72..26fdb24 100644
--- a/app/assets/stylesheets/translations/opera-31.scss
+++ b/app/assets/stylesheets/translations/opera-31.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": nd,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-32.scss b/app/assets/stylesheets/translations/opera-32.scss
index 37bbb88..8fbbcfd 100644
--- a/app/assets/stylesheets/translations/opera-32.scss
+++ b/app/assets/stylesheets/translations/opera-32.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": y,
"link-rel-prerender": y,
+ "rest-parameters": nd,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-9.5-9.6.scss b/app/assets/stylesheets/translations/opera-9.5-9.6.scss
index ecc55cb..4c570fe 100644
--- a/app/assets/stylesheets/translations/opera-9.5-9.6.scss
+++ b/app/assets/stylesheets/translations/opera-9.5-9.6.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": u,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/opera-9.scss b/app/assets/stylesheets/translations/opera-9.scss
index a8f053c..be0edaa 100644
--- a/app/assets/stylesheets/translations/opera-9.scss
+++ b/app/assets/stylesheets/translations/opera-9.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": u,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": u,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": u,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/safari-3.1.scss b/app/assets/stylesheets/translations/safari-3.1.scss
index e25f18f..234f8a8 100644
--- a/app/assets/stylesheets/translations/safari-3.1.scss
+++ b/app/assets/stylesheets/translations/safari-3.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": u,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": u,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/safari-3.2.scss b/app/assets/stylesheets/translations/safari-3.2.scss
index e97721d..d4244d1 100644
--- a/app/assets/stylesheets/translations/safari-3.2.scss
+++ b/app/assets/stylesheets/translations/safari-3.2.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/safari-4.scss b/app/assets/stylesheets/translations/safari-4.scss
index 46f0413..4cbadee 100644
--- a/app/assets/stylesheets/translations/safari-4.scss
+++ b/app/assets/stylesheets/translations/safari-4.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/safari-5.1.scss b/app/assets/stylesheets/translations/safari-5.1.scss
index c0b07c3..1e9dfd7 100644
--- a/app/assets/stylesheets/translations/safari-5.1.scss
+++ b/app/assets/stylesheets/translations/safari-5.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/safari-5.scss b/app/assets/stylesheets/translations/safari-5.scss
index 2c025b3..cd9e226 100644
--- a/app/assets/stylesheets/translations/safari-5.scss
+++ b/app/assets/stylesheets/translations/safari-5.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": u,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/safari-6.1.scss b/app/assets/stylesheets/translations/safari-6.1.scss
index 5ca1802..bcc1ecb 100644
--- a/app/assets/stylesheets/translations/safari-6.1.scss
+++ b/app/assets/stylesheets/translations/safari-6.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/safari-6.scss b/app/assets/stylesheets/translations/safari-6.scss
index 3a53360..c9d09f7 100644
--- a/app/assets/stylesheets/translations/safari-6.scss
+++ b/app/assets/stylesheets/translations/safari-6.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/safari-7.1.scss b/app/assets/stylesheets/translations/safari-7.1.scss
index a9433a0..61393f6 100644
--- a/app/assets/stylesheets/translations/safari-7.1.scss
+++ b/app/assets/stylesheets/translations/safari-7.1.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/safari-7.scss b/app/assets/stylesheets/translations/safari-7.scss
index 6d23a56..d3a63ae 100644
--- a/app/assets/stylesheets/translations/safari-7.scss
+++ b/app/assets/stylesheets/translations/safari-7.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/safari-8.scss b/app/assets/stylesheets/translations/safari-8.scss
index 7a52cec..a4d4e21 100644
--- a/app/assets/stylesheets/translations/safari-8.scss
+++ b/app/assets/stylesheets/translations/safari-8.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/translations/safari-9.scss b/app/assets/stylesheets/translations/safari-9.scss
index 0b71347..c959d84 100644
--- a/app/assets/stylesheets/translations/safari-9.scss
+++ b/app/assets/stylesheets/translations/safari-9.scss
@@ -291,9 +291,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/and_uc-9.9.scss b/app/assets/stylesheets/web-fonts/and_uc-9.9.scss
index cd7a27b..2b59e12 100644
--- a/app/assets/stylesheets/web-fonts/and_uc-9.9.scss
+++ b/app/assets/stylesheets/web-fonts/and_uc-9.9.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/android-2.1.scss b/app/assets/stylesheets/web-fonts/android-2.1.scss
index 34c704b..673e310 100644
--- a/app/assets/stylesheets/web-fonts/android-2.1.scss
+++ b/app/assets/stylesheets/web-fonts/android-2.1.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": u,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": u,
+ "addeventlistener": y,
+ "documenthead": u,
+ "innertext": u,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/android-2.2.scss b/app/assets/stylesheets/web-fonts/android-2.2.scss
index 77bd442..6d158a0 100644
--- a/app/assets/stylesheets/web-fonts/android-2.2.scss
+++ b/app/assets/stylesheets/web-fonts/android-2.2.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": u,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": u,
+ "addeventlistener": y,
+ "documenthead": u,
+ "innertext": u,
+ "netinfo": a,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/android-2.3.scss b/app/assets/stylesheets/web-fonts/android-2.3.scss
index d4af969..0b4157e 100644
--- a/app/assets/stylesheets/web-fonts/android-2.3.scss
+++ b/app/assets/stylesheets/web-fonts/android-2.3.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": a,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/android-3.scss b/app/assets/stylesheets/web-fonts/android-3.scss
index 3077b89..4daa502 100644
--- a/app/assets/stylesheets/web-fonts/android-3.scss
+++ b/app/assets/stylesheets/web-fonts/android-3.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": a,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/android-4.1.scss b/app/assets/stylesheets/web-fonts/android-4.1.scss
index 9299a4f..ab9c7ac 100644
--- a/app/assets/stylesheets/web-fonts/android-4.1.scss
+++ b/app/assets/stylesheets/web-fonts/android-4.1.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": a,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/android-4.2-4.3.scss b/app/assets/stylesheets/web-fonts/android-4.2-4.3.scss
index 6e807e5..1a89998 100644
--- a/app/assets/stylesheets/web-fonts/android-4.2-4.3.scss
+++ b/app/assets/stylesheets/web-fonts/android-4.2-4.3.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": a,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/android-4.4.3-4.4.4.scss b/app/assets/stylesheets/web-fonts/android-4.4.3-4.4.4.scss
index 04b771c..c76a87e 100644
--- a/app/assets/stylesheets/web-fonts/android-4.4.3-4.4.4.scss
+++ b/app/assets/stylesheets/web-fonts/android-4.4.3-4.4.4.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/android-4.4.scss b/app/assets/stylesheets/web-fonts/android-4.4.scss
index c6f9e18..0e1c0fd 100644
--- a/app/assets/stylesheets/web-fonts/android-4.4.scss
+++ b/app/assets/stylesheets/web-fonts/android-4.4.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/android-4.scss b/app/assets/stylesheets/web-fonts/android-4.scss
index b4feb4c..1362709 100644
--- a/app/assets/stylesheets/web-fonts/android-4.scss
+++ b/app/assets/stylesheets/web-fonts/android-4.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": a,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/bb-10.scss b/app/assets/stylesheets/web-fonts/bb-10.scss
index 791a85e..d910d02 100644
--- a/app/assets/stylesheets/web-fonts/bb-10.scss
+++ b/app/assets/stylesheets/web-fonts/bb-10.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/bb-7.scss b/app/assets/stylesheets/web-fonts/bb-7.scss
index 94c4c03..d598011 100644
--- a/app/assets/stylesheets/web-fonts/bb-7.scss
+++ b/app/assets/stylesheets/web-fonts/bb-7.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-10.scss b/app/assets/stylesheets/web-fonts/chrome-10.scss
index 905345a..26b263e 100644
--- a/app/assets/stylesheets/web-fonts/chrome-10.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-10.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-11.scss b/app/assets/stylesheets/web-fonts/chrome-11.scss
index aee8598..0e16c3c 100644
--- a/app/assets/stylesheets/web-fonts/chrome-11.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-11.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-12.scss b/app/assets/stylesheets/web-fonts/chrome-12.scss
index 32c1a80..c5b6338 100644
--- a/app/assets/stylesheets/web-fonts/chrome-12.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-12.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-13.scss b/app/assets/stylesheets/web-fonts/chrome-13.scss
index f518d7e..fbea09a 100644
--- a/app/assets/stylesheets/web-fonts/chrome-13.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-13.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-14.scss b/app/assets/stylesheets/web-fonts/chrome-14.scss
index ec1a7d8..ec574ba 100644
--- a/app/assets/stylesheets/web-fonts/chrome-14.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-14.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-15.scss b/app/assets/stylesheets/web-fonts/chrome-15.scss
index 238dcdc..672b4b1 100644
--- a/app/assets/stylesheets/web-fonts/chrome-15.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-15.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-16.scss b/app/assets/stylesheets/web-fonts/chrome-16.scss
index 05859c3..dc6867c 100644
--- a/app/assets/stylesheets/web-fonts/chrome-16.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-16.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-17.scss b/app/assets/stylesheets/web-fonts/chrome-17.scss
index ee9cfcc..f623982 100644
--- a/app/assets/stylesheets/web-fonts/chrome-17.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-17.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-18.scss b/app/assets/stylesheets/web-fonts/chrome-18.scss
index 3a8830f..fb956bd 100644
--- a/app/assets/stylesheets/web-fonts/chrome-18.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-18.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-19.scss b/app/assets/stylesheets/web-fonts/chrome-19.scss
index 56c2ff3..f024813 100644
--- a/app/assets/stylesheets/web-fonts/chrome-19.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-19.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-20.scss b/app/assets/stylesheets/web-fonts/chrome-20.scss
index eb7c92f..d763561 100644
--- a/app/assets/stylesheets/web-fonts/chrome-20.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-20.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-21.scss b/app/assets/stylesheets/web-fonts/chrome-21.scss
index 2a0a60c..11699df 100644
--- a/app/assets/stylesheets/web-fonts/chrome-21.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-21.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-22.scss b/app/assets/stylesheets/web-fonts/chrome-22.scss
index e90aff2..2cc96a3 100644
--- a/app/assets/stylesheets/web-fonts/chrome-22.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-22.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-23.scss b/app/assets/stylesheets/web-fonts/chrome-23.scss
index 557d0b1..c323da6 100644
--- a/app/assets/stylesheets/web-fonts/chrome-23.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-23.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-24.scss b/app/assets/stylesheets/web-fonts/chrome-24.scss
index e2e1eb2..135d50b 100644
--- a/app/assets/stylesheets/web-fonts/chrome-24.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-24.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-25.scss b/app/assets/stylesheets/web-fonts/chrome-25.scss
index 356fe55..c1a9e90 100644
--- a/app/assets/stylesheets/web-fonts/chrome-25.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-25.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-26.scss b/app/assets/stylesheets/web-fonts/chrome-26.scss
index bc34db0..6a62b89 100644
--- a/app/assets/stylesheets/web-fonts/chrome-26.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-26.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-27.scss b/app/assets/stylesheets/web-fonts/chrome-27.scss
index 0e13e5b..d651426 100644
--- a/app/assets/stylesheets/web-fonts/chrome-27.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-27.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-28.scss b/app/assets/stylesheets/web-fonts/chrome-28.scss
index a0ace3c..a720536 100644
--- a/app/assets/stylesheets/web-fonts/chrome-28.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-28.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-29.scss b/app/assets/stylesheets/web-fonts/chrome-29.scss
index 28c9876..2e12f37 100644
--- a/app/assets/stylesheets/web-fonts/chrome-29.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-29.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-30.scss b/app/assets/stylesheets/web-fonts/chrome-30.scss
index 51093e6..b37843f 100644
--- a/app/assets/stylesheets/web-fonts/chrome-30.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-30.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-31.scss b/app/assets/stylesheets/web-fonts/chrome-31.scss
index b7156c4..fc219e7 100644
--- a/app/assets/stylesheets/web-fonts/chrome-31.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-31.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-32.scss b/app/assets/stylesheets/web-fonts/chrome-32.scss
index 1991b6c..dfaa7f1 100644
--- a/app/assets/stylesheets/web-fonts/chrome-32.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-32.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-33.scss b/app/assets/stylesheets/web-fonts/chrome-33.scss
index d15f8d7..0a33aa1 100644
--- a/app/assets/stylesheets/web-fonts/chrome-33.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-33.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-34.scss b/app/assets/stylesheets/web-fonts/chrome-34.scss
index 13a15e4..1a29888 100644
--- a/app/assets/stylesheets/web-fonts/chrome-34.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-34.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-35.scss b/app/assets/stylesheets/web-fonts/chrome-35.scss
index b48b48d..caef4e0 100644
--- a/app/assets/stylesheets/web-fonts/chrome-35.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-35.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-36.scss b/app/assets/stylesheets/web-fonts/chrome-36.scss
index 36b2a40..6decdac 100644
--- a/app/assets/stylesheets/web-fonts/chrome-36.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-36.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-37.scss b/app/assets/stylesheets/web-fonts/chrome-37.scss
index e59f93c..1fe5894 100644
--- a/app/assets/stylesheets/web-fonts/chrome-37.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-37.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-38.scss b/app/assets/stylesheets/web-fonts/chrome-38.scss
index 3711191..08d7454 100644
--- a/app/assets/stylesheets/web-fonts/chrome-38.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-38.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-39.scss b/app/assets/stylesheets/web-fonts/chrome-39.scss
index c5b6c15..b6bc669 100644
--- a/app/assets/stylesheets/web-fonts/chrome-39.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-39.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-4.scss b/app/assets/stylesheets/web-fonts/chrome-4.scss
index 60fe9e5..90bc4b6 100644
--- a/app/assets/stylesheets/web-fonts/chrome-4.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-4.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-40.scss b/app/assets/stylesheets/web-fonts/chrome-40.scss
index 177a5dc..0cd077a 100644
--- a/app/assets/stylesheets/web-fonts/chrome-40.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-40.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-41.scss b/app/assets/stylesheets/web-fonts/chrome-41.scss
index b39d8ff..3a111e3 100644
--- a/app/assets/stylesheets/web-fonts/chrome-41.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-41.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-42.scss b/app/assets/stylesheets/web-fonts/chrome-42.scss
index c8f7bd7..85eaaa6 100644
--- a/app/assets/stylesheets/web-fonts/chrome-42.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-42.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-43.scss b/app/assets/stylesheets/web-fonts/chrome-43.scss
index cdcc58b..b76b5e1 100644
--- a/app/assets/stylesheets/web-fonts/chrome-43.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-43.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-44.scss b/app/assets/stylesheets/web-fonts/chrome-44.scss
index 4608d8e..081d857 100644
--- a/app/assets/stylesheets/web-fonts/chrome-44.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-44.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": nd,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-45.scss b/app/assets/stylesheets/web-fonts/chrome-45.scss
index 47aff4d..43a89b5 100644
--- a/app/assets/stylesheets/web-fonts/chrome-45.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-45.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": y,
"link-rel-prerender": y,
+ "rest-parameters": nd,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-46.scss b/app/assets/stylesheets/web-fonts/chrome-46.scss
index 2be7b36..c746c76 100644
--- a/app/assets/stylesheets/web-fonts/chrome-46.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-46.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": y,
"link-rel-prerender": y,
+ "rest-parameters": nd,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-47.scss b/app/assets/stylesheets/web-fonts/chrome-47.scss
index 3696514..8a96856 100644
--- a/app/assets/stylesheets/web-fonts/chrome-47.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-47.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": y,
"link-rel-prerender": y,
+ "rest-parameters": nd,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-5.scss b/app/assets/stylesheets/web-fonts/chrome-5.scss
index 2c5c94a..707f0f3 100644
--- a/app/assets/stylesheets/web-fonts/chrome-5.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-5.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-6.scss b/app/assets/stylesheets/web-fonts/chrome-6.scss
index 4287bf8..cf64418 100644
--- a/app/assets/stylesheets/web-fonts/chrome-6.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-6.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-7.scss b/app/assets/stylesheets/web-fonts/chrome-7.scss
index de1485c..dec4ebf 100644
--- a/app/assets/stylesheets/web-fonts/chrome-7.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-7.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-8.scss b/app/assets/stylesheets/web-fonts/chrome-8.scss
index 68f24f5..229c6af 100644
--- a/app/assets/stylesheets/web-fonts/chrome-8.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-8.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/chrome-9.scss b/app/assets/stylesheets/web-fonts/chrome-9.scss
index e38a7f9..43ebd0e 100644
--- a/app/assets/stylesheets/web-fonts/chrome-9.scss
+++ b/app/assets/stylesheets/web-fonts/chrome-9.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-10.scss b/app/assets/stylesheets/web-fonts/firefox-10.scss
index 2a58f20..abd3b90 100644
--- a/app/assets/stylesheets/web-fonts/firefox-10.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-10.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-11.scss b/app/assets/stylesheets/web-fonts/firefox-11.scss
index b017395..fccd143 100644
--- a/app/assets/stylesheets/web-fonts/firefox-11.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-11.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-12.scss b/app/assets/stylesheets/web-fonts/firefox-12.scss
index 9aef787..c1da405 100644
--- a/app/assets/stylesheets/web-fonts/firefox-12.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-12.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-13.scss b/app/assets/stylesheets/web-fonts/firefox-13.scss
index d730fb0..20c8de8 100644
--- a/app/assets/stylesheets/web-fonts/firefox-13.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-13.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-14.scss b/app/assets/stylesheets/web-fonts/firefox-14.scss
index 3f8d0a2..586189c 100644
--- a/app/assets/stylesheets/web-fonts/firefox-14.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-14.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-15.scss b/app/assets/stylesheets/web-fonts/firefox-15.scss
index 9cf6b8e..2ef96bd 100644
--- a/app/assets/stylesheets/web-fonts/firefox-15.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-15.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-16.scss b/app/assets/stylesheets/web-fonts/firefox-16.scss
index c923746..5e36c0e 100644
--- a/app/assets/stylesheets/web-fonts/firefox-16.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-16.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-17.scss b/app/assets/stylesheets/web-fonts/firefox-17.scss
index fa67d32..2bc931b 100644
--- a/app/assets/stylesheets/web-fonts/firefox-17.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-17.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-18.scss b/app/assets/stylesheets/web-fonts/firefox-18.scss
index 8c9cfbb..e75aec4 100644
--- a/app/assets/stylesheets/web-fonts/firefox-18.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-18.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-19.scss b/app/assets/stylesheets/web-fonts/firefox-19.scss
index df217c4..087a829 100644
--- a/app/assets/stylesheets/web-fonts/firefox-19.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-19.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-2.scss b/app/assets/stylesheets/web-fonts/firefox-2.scss
index 770b045..c5c2469 100644
--- a/app/assets/stylesheets/web-fonts/firefox-2.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-2.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-20.scss b/app/assets/stylesheets/web-fonts/firefox-20.scss
index 6bccea5..f1b185f 100644
--- a/app/assets/stylesheets/web-fonts/firefox-20.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-20.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-21.scss b/app/assets/stylesheets/web-fonts/firefox-21.scss
index 6374ee1..2959fbd 100644
--- a/app/assets/stylesheets/web-fonts/firefox-21.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-21.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-22.scss b/app/assets/stylesheets/web-fonts/firefox-22.scss
index 5499b85..4d6631b 100644
--- a/app/assets/stylesheets/web-fonts/firefox-22.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-22.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-23.scss b/app/assets/stylesheets/web-fonts/firefox-23.scss
index b0afeaa..4630d86 100644
--- a/app/assets/stylesheets/web-fonts/firefox-23.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-23.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-24.scss b/app/assets/stylesheets/web-fonts/firefox-24.scss
index f2e2d58..665a25e 100644
--- a/app/assets/stylesheets/web-fonts/firefox-24.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-24.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-25.scss b/app/assets/stylesheets/web-fonts/firefox-25.scss
index 2ff6ed4..68f02c4 100644
--- a/app/assets/stylesheets/web-fonts/firefox-25.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-25.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-26.scss b/app/assets/stylesheets/web-fonts/firefox-26.scss
index 5eab6ea..47778f7 100644
--- a/app/assets/stylesheets/web-fonts/firefox-26.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-26.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-27.scss b/app/assets/stylesheets/web-fonts/firefox-27.scss
index e2505c2..65fb8c1 100644
--- a/app/assets/stylesheets/web-fonts/firefox-27.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-27.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-28.scss b/app/assets/stylesheets/web-fonts/firefox-28.scss
index 97b4f7b..eb150df 100644
--- a/app/assets/stylesheets/web-fonts/firefox-28.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-28.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-29.scss b/app/assets/stylesheets/web-fonts/firefox-29.scss
index 489dee7..f2f4156 100644
--- a/app/assets/stylesheets/web-fonts/firefox-29.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-29.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-3.5.scss b/app/assets/stylesheets/web-fonts/firefox-3.5.scss
index 710b70a..b116e40 100644
--- a/app/assets/stylesheets/web-fonts/firefox-3.5.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-3.5.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-3.6.scss b/app/assets/stylesheets/web-fonts/firefox-3.6.scss
index 134a8dd..a309f48 100644
--- a/app/assets/stylesheets/web-fonts/firefox-3.6.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-3.6.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-3.scss b/app/assets/stylesheets/web-fonts/firefox-3.scss
index e03de23..953c430 100644
--- a/app/assets/stylesheets/web-fonts/firefox-3.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-3.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-30.scss b/app/assets/stylesheets/web-fonts/firefox-30.scss
index 690589e..af81fb2 100644
--- a/app/assets/stylesheets/web-fonts/firefox-30.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-30.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-31.scss b/app/assets/stylesheets/web-fonts/firefox-31.scss
index 53c922f..6ace775 100644
--- a/app/assets/stylesheets/web-fonts/firefox-31.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-31.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-32.scss b/app/assets/stylesheets/web-fonts/firefox-32.scss
index c6a4c7a..9058cfc 100644
--- a/app/assets/stylesheets/web-fonts/firefox-32.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-32.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-33.scss b/app/assets/stylesheets/web-fonts/firefox-33.scss
index 6ab6ae8..125f563 100644
--- a/app/assets/stylesheets/web-fonts/firefox-33.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-33.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-34.scss b/app/assets/stylesheets/web-fonts/firefox-34.scss
index 57592e9..4bc1eac 100644
--- a/app/assets/stylesheets/web-fonts/firefox-34.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-34.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-35.scss b/app/assets/stylesheets/web-fonts/firefox-35.scss
index d793f2e..3ed71aa 100644
--- a/app/assets/stylesheets/web-fonts/firefox-35.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-35.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-36.scss b/app/assets/stylesheets/web-fonts/firefox-36.scss
index a59add3..abcaf91 100644
--- a/app/assets/stylesheets/web-fonts/firefox-36.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-36.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": nd,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-37.scss b/app/assets/stylesheets/web-fonts/firefox-37.scss
index 0d1cc53..4f75aa6 100644
--- a/app/assets/stylesheets/web-fonts/firefox-37.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-37.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": nd,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-38.scss b/app/assets/stylesheets/web-fonts/firefox-38.scss
index 8b34041..97341cc 100644
--- a/app/assets/stylesheets/web-fonts/firefox-38.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-38.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": nd,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-39.scss b/app/assets/stylesheets/web-fonts/firefox-39.scss
index dec5664..37526fd 100644
--- a/app/assets/stylesheets/web-fonts/firefox-39.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-39.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": nd,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-4.scss b/app/assets/stylesheets/web-fonts/firefox-4.scss
index b10a87e..387b987 100644
--- a/app/assets/stylesheets/web-fonts/firefox-4.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-4.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-40.scss b/app/assets/stylesheets/web-fonts/firefox-40.scss
index f26aa08..195bdba 100644
--- a/app/assets/stylesheets/web-fonts/firefox-40.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-40.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": nd,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-41.scss b/app/assets/stylesheets/web-fonts/firefox-41.scss
index b03c698..2b2deda 100644
--- a/app/assets/stylesheets/web-fonts/firefox-41.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-41.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": y,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-42.scss b/app/assets/stylesheets/web-fonts/firefox-42.scss
index 38afad9..8c3bce4 100644
--- a/app/assets/stylesheets/web-fonts/firefox-42.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-42.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": y,
"link-rel-prerender": n,
+ "rest-parameters": y,
+ "css-cross-fade": n,
"css-writing-mode": y,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-5.scss b/app/assets/stylesheets/web-fonts/firefox-5.scss
index c437f71..eb0d43a 100644
--- a/app/assets/stylesheets/web-fonts/firefox-5.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-5.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-6.scss b/app/assets/stylesheets/web-fonts/firefox-6.scss
index 8661edf..3add7fe 100644
--- a/app/assets/stylesheets/web-fonts/firefox-6.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-6.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-7.scss b/app/assets/stylesheets/web-fonts/firefox-7.scss
index 20264a8..2bc7cdc 100644
--- a/app/assets/stylesheets/web-fonts/firefox-7.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-7.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-8.scss b/app/assets/stylesheets/web-fonts/firefox-8.scss
index 682a95c..0c66d13 100644
--- a/app/assets/stylesheets/web-fonts/firefox-8.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-8.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/firefox-9.scss b/app/assets/stylesheets/web-fonts/firefox-9.scss
index 9bcd7b3..aa11158 100644
--- a/app/assets/stylesheets/web-fonts/firefox-9.scss
+++ b/app/assets/stylesheets/web-fonts/firefox-9.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": n,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/ie-10.scss b/app/assets/stylesheets/web-fonts/ie-10.scss
index a9ca450..0da9e82 100644
--- a/app/assets/stylesheets/web-fonts/ie-10.scss
+++ b/app/assets/stylesheets/web-fonts/ie-10.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": y
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/ie-11.scss b/app/assets/stylesheets/web-fonts/ie-11.scss
index 666ddda..e45a2be 100644
--- a/app/assets/stylesheets/web-fonts/ie-11.scss
+++ b/app/assets/stylesheets/web-fonts/ie-11.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": y,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": y
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/ie-5.5.scss b/app/assets/stylesheets/web-fonts/ie-5.5.scss
index 0c9332f..8c527b7 100644
--- a/app/assets/stylesheets/web-fonts/ie-5.5.scss
+++ b/app/assets/stylesheets/web-fonts/ie-5.5.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": u,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": n
+ "customevent": n,
+ "textcontent": n,
+ "addeventlistener": n,
+ "documenthead": n,
+ "innertext": u,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/ie-6.scss b/app/assets/stylesheets/web-fonts/ie-6.scss
index 3500f67..2dae7d1 100644
--- a/app/assets/stylesheets/web-fonts/ie-6.scss
+++ b/app/assets/stylesheets/web-fonts/ie-6.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": a,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": n
+ "customevent": n,
+ "textcontent": n,
+ "addeventlistener": n,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/ie-7.scss b/app/assets/stylesheets/web-fonts/ie-7.scss
index ccc79a5..fa8e2bd 100644
--- a/app/assets/stylesheets/web-fonts/ie-7.scss
+++ b/app/assets/stylesheets/web-fonts/ie-7.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": a,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": n
+ "customevent": n,
+ "textcontent": n,
+ "addeventlistener": n,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/ie-8.scss b/app/assets/stylesheets/web-fonts/ie-8.scss
index 05fd274..fd0c418 100644
--- a/app/assets/stylesheets/web-fonts/ie-8.scss
+++ b/app/assets/stylesheets/web-fonts/ie-8.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": a,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": n
+ "customevent": n,
+ "textcontent": n,
+ "addeventlistener": n,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/ie-9.scss b/app/assets/stylesheets/web-fonts/ie-9.scss
index 4fa7003..6c1d8f4 100644
--- a/app/assets/stylesheets/web-fonts/ie-9.scss
+++ b/app/assets/stylesheets/web-fonts/ie-9.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": a,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": a,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/ie_mob-10.scss b/app/assets/stylesheets/web-fonts/ie_mob-10.scss
index f70edb6..ccb3e2c 100644
--- a/app/assets/stylesheets/web-fonts/ie_mob-10.scss
+++ b/app/assets/stylesheets/web-fonts/ie_mob-10.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": ax,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": y
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/ie_mob-11.scss b/app/assets/stylesheets/web-fonts/ie_mob-11.scss
index 3797afe..7581b38 100644
--- a/app/assets/stylesheets/web-fonts/ie_mob-11.scss
+++ b/app/assets/stylesheets/web-fonts/ie_mob-11.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": y,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": ax,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": y
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/ios_saf-3.2.scss b/app/assets/stylesheets/web-fonts/ios_saf-3.2.scss
index a0b0e2b..45788d5 100644
--- a/app/assets/stylesheets/web-fonts/ios_saf-3.2.scss
+++ b/app/assets/stylesheets/web-fonts/ios_saf-3.2.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": u,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": u,
+ "addeventlistener": y,
+ "documenthead": u,
+ "innertext": u,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/ios_saf-4.0-4.1.scss b/app/assets/stylesheets/web-fonts/ios_saf-4.0-4.1.scss
index 9efdac9..ca40a77 100644
--- a/app/assets/stylesheets/web-fonts/ios_saf-4.0-4.1.scss
+++ b/app/assets/stylesheets/web-fonts/ios_saf-4.0-4.1.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/ios_saf-4.2-4.3.scss b/app/assets/stylesheets/web-fonts/ios_saf-4.2-4.3.scss
index fe8abfa..bbb817a 100644
--- a/app/assets/stylesheets/web-fonts/ios_saf-4.2-4.3.scss
+++ b/app/assets/stylesheets/web-fonts/ios_saf-4.2-4.3.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/ios_saf-5.0-5.1.scss b/app/assets/stylesheets/web-fonts/ios_saf-5.0-5.1.scss
index bca0c35..7eca56e 100644
--- a/app/assets/stylesheets/web-fonts/ios_saf-5.0-5.1.scss
+++ b/app/assets/stylesheets/web-fonts/ios_saf-5.0-5.1.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/ios_saf-6.0-6.1.scss b/app/assets/stylesheets/web-fonts/ios_saf-6.0-6.1.scss
index af4acea..a85089d 100644
--- a/app/assets/stylesheets/web-fonts/ios_saf-6.0-6.1.scss
+++ b/app/assets/stylesheets/web-fonts/ios_saf-6.0-6.1.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/ios_saf-7.0-7.1.scss b/app/assets/stylesheets/web-fonts/ios_saf-7.0-7.1.scss
index 5035462..bf494eb 100644
--- a/app/assets/stylesheets/web-fonts/ios_saf-7.0-7.1.scss
+++ b/app/assets/stylesheets/web-fonts/ios_saf-7.0-7.1.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/ios_saf-8.1-8.4.scss b/app/assets/stylesheets/web-fonts/ios_saf-8.1-8.4.scss
index d650f7a..af6ee83 100644
--- a/app/assets/stylesheets/web-fonts/ios_saf-8.1-8.4.scss
+++ b/app/assets/stylesheets/web-fonts/ios_saf-8.1-8.4.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/ios_saf-8.scss b/app/assets/stylesheets/web-fonts/ios_saf-8.scss
index 264ca86..097eb0b 100644
--- a/app/assets/stylesheets/web-fonts/ios_saf-8.scss
+++ b/app/assets/stylesheets/web-fonts/ios_saf-8.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/ios_saf-9.scss b/app/assets/stylesheets/web-fonts/ios_saf-9.scss
index ab5ab0d..06de032 100644
--- a/app/assets/stylesheets/web-fonts/ios_saf-9.scss
+++ b/app/assets/stylesheets/web-fonts/ios_saf-9.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/op_mini-5.0-8.0.scss b/app/assets/stylesheets/web-fonts/op_mini-5.0-8.0.scss
index 2a3c3a2..e274400 100644
--- a/app/assets/stylesheets/web-fonts/op_mini-5.0-8.0.scss
+++ b/app/assets/stylesheets/web-fonts/op_mini-5.0-8.0.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/op_mob-10.scss b/app/assets/stylesheets/web-fonts/op_mob-10.scss
index 8600bda..552c88c 100644
--- a/app/assets/stylesheets/web-fonts/op_mob-10.scss
+++ b/app/assets/stylesheets/web-fonts/op_mob-10.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/op_mob-11.1.scss b/app/assets/stylesheets/web-fonts/op_mob-11.1.scss
index 373817a..13cdeba 100644
--- a/app/assets/stylesheets/web-fonts/op_mob-11.1.scss
+++ b/app/assets/stylesheets/web-fonts/op_mob-11.1.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/op_mob-11.5.scss b/app/assets/stylesheets/web-fonts/op_mob-11.5.scss
index 6c02a42..2fe5197 100644
--- a/app/assets/stylesheets/web-fonts/op_mob-11.5.scss
+++ b/app/assets/stylesheets/web-fonts/op_mob-11.5.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/op_mob-11.scss b/app/assets/stylesheets/web-fonts/op_mob-11.scss
index 3fc8039..38e8e25 100644
--- a/app/assets/stylesheets/web-fonts/op_mob-11.scss
+++ b/app/assets/stylesheets/web-fonts/op_mob-11.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/op_mob-12.1.scss b/app/assets/stylesheets/web-fonts/op_mob-12.1.scss
index 5880957..0493e20 100644
--- a/app/assets/stylesheets/web-fonts/op_mob-12.1.scss
+++ b/app/assets/stylesheets/web-fonts/op_mob-12.1.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/op_mob-12.scss b/app/assets/stylesheets/web-fonts/op_mob-12.scss
index 761aea9..3a38a4d 100644
--- a/app/assets/stylesheets/web-fonts/op_mob-12.scss
+++ b/app/assets/stylesheets/web-fonts/op_mob-12.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/op_mob-30.scss b/app/assets/stylesheets/web-fonts/op_mob-30.scss
index 6c79dd2..5bdc006 100644
--- a/app/assets/stylesheets/web-fonts/op_mob-30.scss
+++ b/app/assets/stylesheets/web-fonts/op_mob-30.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": y,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-10.0-10.1.scss b/app/assets/stylesheets/web-fonts/opera-10.0-10.1.scss
index b05e082..56aa975 100644
--- a/app/assets/stylesheets/web-fonts/opera-10.0-10.1.scss
+++ b/app/assets/stylesheets/web-fonts/opera-10.0-10.1.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-10.5.scss b/app/assets/stylesheets/web-fonts/opera-10.5.scss
index 9bb4e92..a61732b 100644
--- a/app/assets/stylesheets/web-fonts/opera-10.5.scss
+++ b/app/assets/stylesheets/web-fonts/opera-10.5.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-10.6.scss b/app/assets/stylesheets/web-fonts/opera-10.6.scss
index 49e5007..f9070cb 100644
--- a/app/assets/stylesheets/web-fonts/opera-10.6.scss
+++ b/app/assets/stylesheets/web-fonts/opera-10.6.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-11.1.scss b/app/assets/stylesheets/web-fonts/opera-11.1.scss
index ce08d9e..ec52fef 100644
--- a/app/assets/stylesheets/web-fonts/opera-11.1.scss
+++ b/app/assets/stylesheets/web-fonts/opera-11.1.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-11.5.scss b/app/assets/stylesheets/web-fonts/opera-11.5.scss
index c793b4d..046e7b2 100644
--- a/app/assets/stylesheets/web-fonts/opera-11.5.scss
+++ b/app/assets/stylesheets/web-fonts/opera-11.5.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-11.6.scss b/app/assets/stylesheets/web-fonts/opera-11.6.scss
index 188f713..1242745 100644
--- a/app/assets/stylesheets/web-fonts/opera-11.6.scss
+++ b/app/assets/stylesheets/web-fonts/opera-11.6.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-11.scss b/app/assets/stylesheets/web-fonts/opera-11.scss
index 9b37e23..9881f15 100644
--- a/app/assets/stylesheets/web-fonts/opera-11.scss
+++ b/app/assets/stylesheets/web-fonts/opera-11.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-12.1.scss b/app/assets/stylesheets/web-fonts/opera-12.1.scss
index 38e8cf4..35381f9 100644
--- a/app/assets/stylesheets/web-fonts/opera-12.1.scss
+++ b/app/assets/stylesheets/web-fonts/opera-12.1.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-12.scss b/app/assets/stylesheets/web-fonts/opera-12.scss
index 85c19c0..a766f7a 100644
--- a/app/assets/stylesheets/web-fonts/opera-12.scss
+++ b/app/assets/stylesheets/web-fonts/opera-12.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-15.scss b/app/assets/stylesheets/web-fonts/opera-15.scss
index 9f97987..0ecbbe7 100644
--- a/app/assets/stylesheets/web-fonts/opera-15.scss
+++ b/app/assets/stylesheets/web-fonts/opera-15.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-16.scss b/app/assets/stylesheets/web-fonts/opera-16.scss
index c9ce08f..d9b09f1 100644
--- a/app/assets/stylesheets/web-fonts/opera-16.scss
+++ b/app/assets/stylesheets/web-fonts/opera-16.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-17.scss b/app/assets/stylesheets/web-fonts/opera-17.scss
index c2207c7..ab8402a 100644
--- a/app/assets/stylesheets/web-fonts/opera-17.scss
+++ b/app/assets/stylesheets/web-fonts/opera-17.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-18.scss b/app/assets/stylesheets/web-fonts/opera-18.scss
index 773ce18..d8b16b1 100644
--- a/app/assets/stylesheets/web-fonts/opera-18.scss
+++ b/app/assets/stylesheets/web-fonts/opera-18.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-19.scss b/app/assets/stylesheets/web-fonts/opera-19.scss
index 15f1e10..01c1bb2 100644
--- a/app/assets/stylesheets/web-fonts/opera-19.scss
+++ b/app/assets/stylesheets/web-fonts/opera-19.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-20.scss b/app/assets/stylesheets/web-fonts/opera-20.scss
index 1d42c3f..2135743 100644
--- a/app/assets/stylesheets/web-fonts/opera-20.scss
+++ b/app/assets/stylesheets/web-fonts/opera-20.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-21.scss b/app/assets/stylesheets/web-fonts/opera-21.scss
index 417974c..1a6bed6 100644
--- a/app/assets/stylesheets/web-fonts/opera-21.scss
+++ b/app/assets/stylesheets/web-fonts/opera-21.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-22.scss b/app/assets/stylesheets/web-fonts/opera-22.scss
index d86c37d..3e39922 100644
--- a/app/assets/stylesheets/web-fonts/opera-22.scss
+++ b/app/assets/stylesheets/web-fonts/opera-22.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-23.scss b/app/assets/stylesheets/web-fonts/opera-23.scss
index 0984896..1253845 100644
--- a/app/assets/stylesheets/web-fonts/opera-23.scss
+++ b/app/assets/stylesheets/web-fonts/opera-23.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-24.scss b/app/assets/stylesheets/web-fonts/opera-24.scss
index c16cc1d..4d40aff 100644
--- a/app/assets/stylesheets/web-fonts/opera-24.scss
+++ b/app/assets/stylesheets/web-fonts/opera-24.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-25.scss b/app/assets/stylesheets/web-fonts/opera-25.scss
index 5221b7e..bae6820 100644
--- a/app/assets/stylesheets/web-fonts/opera-25.scss
+++ b/app/assets/stylesheets/web-fonts/opera-25.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-26.scss b/app/assets/stylesheets/web-fonts/opera-26.scss
index b7f0e8a..c9a026e 100644
--- a/app/assets/stylesheets/web-fonts/opera-26.scss
+++ b/app/assets/stylesheets/web-fonts/opera-26.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-27.scss b/app/assets/stylesheets/web-fonts/opera-27.scss
index a3e5b13..6d8d080 100644
--- a/app/assets/stylesheets/web-fonts/opera-27.scss
+++ b/app/assets/stylesheets/web-fonts/opera-27.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": nd,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-28.scss b/app/assets/stylesheets/web-fonts/opera-28.scss
index da1a721..a2d9f56 100644
--- a/app/assets/stylesheets/web-fonts/opera-28.scss
+++ b/app/assets/stylesheets/web-fonts/opera-28.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-29.scss b/app/assets/stylesheets/web-fonts/opera-29.scss
index 523f562..5bfbed2 100644
--- a/app/assets/stylesheets/web-fonts/opera-29.scss
+++ b/app/assets/stylesheets/web-fonts/opera-29.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-30.scss b/app/assets/stylesheets/web-fonts/opera-30.scss
index 239947d..7efee8f 100644
--- a/app/assets/stylesheets/web-fonts/opera-30.scss
+++ b/app/assets/stylesheets/web-fonts/opera-30.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-31.scss b/app/assets/stylesheets/web-fonts/opera-31.scss
index edaf2a9..9880b4b 100644
--- a/app/assets/stylesheets/web-fonts/opera-31.scss
+++ b/app/assets/stylesheets/web-fonts/opera-31.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": n,
"link-rel-prerender": y,
+ "rest-parameters": nd,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-32.scss b/app/assets/stylesheets/web-fonts/opera-32.scss
index f909981..b565e2e 100644
--- a/app/assets/stylesheets/web-fonts/opera-32.scss
+++ b/app/assets/stylesheets/web-fonts/opera-32.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": y,
"insertadjacenthtml": y,
"let": a,
+ "arrow-functions": y,
"link-rel-prerender": y,
+ "rest-parameters": nd,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-9.5-9.6.scss b/app/assets/stylesheets/web-fonts/opera-9.5-9.6.scss
index 634e908..24ba393 100644
--- a/app/assets/stylesheets/web-fonts/opera-9.5-9.6.scss
+++ b/app/assets/stylesheets/web-fonts/opera-9.5-9.6.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": u,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/opera-9.scss b/app/assets/stylesheets/web-fonts/opera-9.scss
index f1488d9..7fb5f2d 100644
--- a/app/assets/stylesheets/web-fonts/opera-9.scss
+++ b/app/assets/stylesheets/web-fonts/opera-9.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": u,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": n,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": u,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": u,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/safari-3.1.scss b/app/assets/stylesheets/web-fonts/safari-3.1.scss
index 1f693e9..3f9c259 100644
--- a/app/assets/stylesheets/web-fonts/safari-3.1.scss
+++ b/app/assets/stylesheets/web-fonts/safari-3.1.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": u,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": u,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/safari-3.2.scss b/app/assets/stylesheets/web-fonts/safari-3.2.scss
index 24955d5..2d524eb 100644
--- a/app/assets/stylesheets/web-fonts/safari-3.2.scss
+++ b/app/assets/stylesheets/web-fonts/safari-3.2.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": n,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/safari-4.scss b/app/assets/stylesheets/web-fonts/safari-4.scss
index 9ebf98d..0f6e5a0 100644
--- a/app/assets/stylesheets/web-fonts/safari-4.scss
+++ b/app/assets/stylesheets/web-fonts/safari-4.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": n,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": n,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/safari-5.1.scss b/app/assets/stylesheets/web-fonts/safari-5.1.scss
index 0d772ce..5b88d44 100644
--- a/app/assets/stylesheets/web-fonts/safari-5.1.scss
+++ b/app/assets/stylesheets/web-fonts/safari-5.1.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": a,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/safari-5.scss b/app/assets/stylesheets/web-fonts/safari-5.scss
index 7c9c021..cac07d0 100644
--- a/app/assets/stylesheets/web-fonts/safari-5.scss
+++ b/app/assets/stylesheets/web-fonts/safari-5.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": n,
"css-writing-mode": u,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": u,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/safari-6.1.scss b/app/assets/stylesheets/web-fonts/safari-6.1.scss
index 7306be8..30eca1b 100644
--- a/app/assets/stylesheets/web-fonts/safari-6.1.scss
+++ b/app/assets/stylesheets/web-fonts/safari-6.1.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/safari-6.scss b/app/assets/stylesheets/web-fonts/safari-6.scss
index 6bf2c42..0b6f7da 100644
--- a/app/assets/stylesheets/web-fonts/safari-6.scss
+++ b/app/assets/stylesheets/web-fonts/safari-6.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": u,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/safari-7.1.scss b/app/assets/stylesheets/web-fonts/safari-7.1.scss
index cf49d81..3d51dc1 100644
--- a/app/assets/stylesheets/web-fonts/safari-7.1.scss
+++ b/app/assets/stylesheets/web-fonts/safari-7.1.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/safari-7.scss b/app/assets/stylesheets/web-fonts/safari-7.scss
index 40bb52d..cda0e93 100644
--- a/app/assets/stylesheets/web-fonts/safari-7.scss
+++ b/app/assets/stylesheets/web-fonts/safari-7.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/safari-8.scss b/app/assets/stylesheets/web-fonts/safari-8.scss
index 286f2ee..f026e0d 100644
--- a/app/assets/stylesheets/web-fonts/safari-8.scss
+++ b/app/assets/stylesheets/web-fonts/safari-8.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/app/assets/stylesheets/web-fonts/safari-9.scss b/app/assets/stylesheets/web-fonts/safari-9.scss
index 48f1cf0..db7acf1 100644
--- a/app/assets/stylesheets/web-fonts/safari-9.scss
+++ b/app/assets/stylesheets/web-fonts/safari-9.scss
@@ -292,9 +292,18 @@ $browser_capabilities: (
"css-unset-value": n,
"insertadjacenthtml": y,
"let": n,
+ "arrow-functions": n,
"link-rel-prerender": n,
+ "rest-parameters": n,
+ "css-cross-fade": yx,
"css-writing-mode": yx,
- "addeventlistener": y
+ "customevent": y,
+ "textcontent": y,
+ "addeventlistener": y,
+ "documenthead": y,
+ "innertext": y,
+ "netinfo": n,
+ "setimmediate": n
);
@import "bumbleberry-settings";
diff --git a/config/locales/data/html_records/Broadcast-message---1.html b/config/locales/data/html_records/Broadcast-message---1.html
index d8af1af..ff1f60d 100644
--- a/config/locales/data/html_records/Broadcast-message---1.html
+++ b/config/locales/data/html_records/Broadcast-message---1.html
@@ -44,9 +44,9 @@
Do you have an exciting skill to share with us? Want to chat about creating safe community spaces? Want to make sure we fit a good bike ride into the weekend? Propose a workshop! Don’t worry if you’re not an expert, we want to hear about everyone’s experience within the many configurations of community shops we’re coming from.