Email testing support, added Gemfile.lock and compiled bumbleberry assets to gitignore.
This commit is contained in:
parent
34d50cff5a
commit
83986fe51c
155
.gitignore
vendored
155
.gitignore
vendored
@ -1,74 +1,81 @@
|
|||||||
# Linux.gitignore
|
# Linux.gitignore
|
||||||
.*
|
.*
|
||||||
!.coveralls.yml
|
!.coveralls.yml
|
||||||
!.gitignore
|
!.gitignore
|
||||||
!.rspec
|
!.rspec
|
||||||
!.slugignore
|
!.slugignore
|
||||||
!.travis.yml
|
!.travis.yml
|
||||||
!.openshift
|
!.openshift
|
||||||
*~
|
*~
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# OSX.gitignore
|
# OSX.gitignore
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.AppleDouble
|
.AppleDouble
|
||||||
.LSOverride
|
.LSOverride
|
||||||
Icon
|
Icon
|
||||||
|
|
||||||
|
|
||||||
# Thumbnails
|
# Thumbnails
|
||||||
._*
|
._*
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
*/Thumbs.db
|
*/Thumbs.db
|
||||||
|
|
||||||
# Files that might appear on external disk
|
# Files that might appear on external disk
|
||||||
.Spotlight-V100
|
.Spotlight-V100
|
||||||
.Trashes
|
.Trashes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Rails.gitignore
|
# Rails.gitignore
|
||||||
*.rbc
|
*.rbc
|
||||||
*.sassc
|
*.sassc
|
||||||
.sass-cache
|
.sass-cache
|
||||||
capybara-*.html
|
capybara-*.html
|
||||||
.rvmrc
|
.rvmrc
|
||||||
/.bundle
|
/.bundle
|
||||||
/vendor/bundle
|
/vendor/bundle
|
||||||
/log/*
|
/log/*
|
||||||
/tmp/*
|
/tmp/*
|
||||||
/db/*.sqlite3
|
/db/*.sqlite3
|
||||||
/public/system/*
|
/public/system/*
|
||||||
/coverage/
|
/coverage/
|
||||||
/spec/tmp/*
|
/spec/tmp/*
|
||||||
**.orig
|
**.orig
|
||||||
rerun.txt
|
rerun.txt
|
||||||
pickle-email-*.html
|
pickle-email-*.html
|
||||||
.project
|
.project
|
||||||
|
|
||||||
|
# Ignore Gemfile.lock so that we always get the most up to date gems
|
||||||
|
# We'll be testing in 'preview' to avoid clashes
|
||||||
# Ignore Redis' dataset snapshot
|
Gemfile.lock
|
||||||
dump.rdb
|
|
||||||
|
|
||||||
# Ignore chrome driver log
|
|
||||||
chromedriver.log
|
# Ignore Redis' dataset snapshot
|
||||||
|
dump.rdb
|
||||||
# Ignore rails_best_practices report
|
|
||||||
rails_best_practices_output.html
|
# Ignore chrome driver log
|
||||||
|
chromedriver.log
|
||||||
# Ignore brakeman report
|
|
||||||
brakeman.html
|
# Ignore rails_best_practices report
|
||||||
|
rails_best_practices_output.html
|
||||||
# Ignore file uploads
|
|
||||||
/public/uploads
|
# Ignore brakeman report
|
||||||
|
brakeman.html
|
||||||
# Ignore precompiled assets
|
|
||||||
/public/assets
|
# Ignore file uploads
|
||||||
|
/public/uploads
|
||||||
# Ignore sensitive data
|
|
||||||
/config/settings/local.rb
|
# Ignore precompiled assets
|
||||||
/nbproject/private/
|
/public/assets
|
||||||
<<<<<<< HEAD
|
/app/assets/stylesheets/application/*
|
||||||
/config/database.yml
|
/app/assets/stylesheets/email-example/*
|
||||||
|
/app/assets/stylesheets/translations/*
|
||||||
|
/app/assets/stylesheets/web-fonts/*
|
||||||
|
|
||||||
|
# Ignore sensitive data
|
||||||
|
/config/settings/local.rb
|
||||||
|
/nbproject/private/
|
||||||
|
/config/database.yml
|
||||||
|
9
Gemfile
9
Gemfile
@ -60,7 +60,12 @@ group :development do
|
|||||||
end
|
end
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
gem 'capybara'
|
gem 'gherkin3', '>= 3.1.0'
|
||||||
|
gem 'cucumber', :git => "git://github.com/cucumber/cucumber-ruby.git", branch: "integrate-gherkin3-parser"
|
||||||
|
gem 'cucumber-core', :git => "git://github.com/cucumber/cucumber-ruby-core.git", branch: "integrate-gherkin3-parser"
|
||||||
|
gem 'cucumber-rails', :git => "git://github.com/cucumber/cucumber-rails.git"
|
||||||
|
|
||||||
|
#gem 'capybara'
|
||||||
gem 'poltergeist'
|
gem 'poltergeist'
|
||||||
gem 'guard-rspec'
|
gem 'guard-rspec'
|
||||||
gem 'factory_girl_rails'
|
gem 'factory_girl_rails'
|
||||||
@ -69,7 +74,7 @@ group :test do
|
|||||||
gem 'selenium-webdriver'
|
gem 'selenium-webdriver'
|
||||||
gem 'simplecov', require: false
|
gem 'simplecov', require: false
|
||||||
gem 'webmock', require: false
|
gem 'webmock', require: false
|
||||||
gem 'cucumber-rails', :require => false
|
#gem 'cucumber-rails', :require => false
|
||||||
gem 'database_cleaner'
|
gem 'database_cleaner'
|
||||||
gem 'mocha'
|
gem 'mocha'
|
||||||
end
|
end
|
||||||
|
55
Gemfile.lock
55
Gemfile.lock
@ -1,3 +1,35 @@
|
|||||||
|
GIT
|
||||||
|
remote: git://github.com/cucumber/cucumber-rails.git
|
||||||
|
revision: 34e0f0c80d2b2042dbe4060f48e7b2a9d1dc312c
|
||||||
|
specs:
|
||||||
|
cucumber-rails (1.4.2)
|
||||||
|
capybara (>= 1.1.2, < 3)
|
||||||
|
cucumber (>= 1.3.8, < 2.1)
|
||||||
|
mime-types (>= 1.16, < 3)
|
||||||
|
nokogiri (~> 1.5)
|
||||||
|
railties (>= 3, < 5)
|
||||||
|
|
||||||
|
GIT
|
||||||
|
remote: git://github.com/cucumber/cucumber-ruby-core.git
|
||||||
|
revision: 7348412f3421dc8bdbb7e8e4d6036b05818b3353
|
||||||
|
branch: integrate-gherkin3-parser
|
||||||
|
specs:
|
||||||
|
cucumber-core (1.2.0)
|
||||||
|
gherkin3 (~> 3.1.0)
|
||||||
|
|
||||||
|
GIT
|
||||||
|
remote: git://github.com/cucumber/cucumber-ruby.git
|
||||||
|
revision: ed5e3822b1f5776108737109eb266b8411b5d0a7
|
||||||
|
branch: integrate-gherkin3-parser
|
||||||
|
specs:
|
||||||
|
cucumber (2.0.2)
|
||||||
|
builder (>= 2.1.2)
|
||||||
|
cucumber-core (~> 1.2.0)
|
||||||
|
diff-lcs (>= 1.1.3)
|
||||||
|
gherkin3 (~> 3.1.0)
|
||||||
|
multi_json (>= 1.7.5, < 2.0)
|
||||||
|
multi_test (>= 0.1.2)
|
||||||
|
|
||||||
PATH
|
PATH
|
||||||
remote: ../bumbleberry
|
remote: ../bumbleberry
|
||||||
specs:
|
specs:
|
||||||
@ -126,18 +158,6 @@ GEM
|
|||||||
thor (~> 0.19.1)
|
thor (~> 0.19.1)
|
||||||
crack (0.4.2)
|
crack (0.4.2)
|
||||||
safe_yaml (~> 1.0.0)
|
safe_yaml (~> 1.0.0)
|
||||||
cucumber (1.3.20)
|
|
||||||
builder (>= 2.1.2)
|
|
||||||
diff-lcs (>= 1.1.3)
|
|
||||||
gherkin (~> 2.12)
|
|
||||||
multi_json (>= 1.7.5, < 2.0)
|
|
||||||
multi_test (>= 0.1.2)
|
|
||||||
cucumber-rails (1.4.2)
|
|
||||||
capybara (>= 1.1.2, < 3)
|
|
||||||
cucumber (>= 1.3.8, < 2)
|
|
||||||
mime-types (>= 1.16, < 3)
|
|
||||||
nokogiri (~> 1.5)
|
|
||||||
rails (>= 3, < 5)
|
|
||||||
daemon-spawn (0.4.2)
|
daemon-spawn (0.4.2)
|
||||||
daemons (1.2.3)
|
daemons (1.2.3)
|
||||||
database_cleaner (1.4.1)
|
database_cleaner (1.4.1)
|
||||||
@ -177,10 +197,7 @@ GEM
|
|||||||
gdk_pixbuf2 (2.2.5-x86-mingw32)
|
gdk_pixbuf2 (2.2.5-x86-mingw32)
|
||||||
glib2 (= 2.2.5)
|
glib2 (= 2.2.5)
|
||||||
geocoder (1.2.9)
|
geocoder (1.2.9)
|
||||||
gherkin (2.12.2)
|
gherkin3 (3.1.1)
|
||||||
multi_json (~> 1.3)
|
|
||||||
gherkin (2.12.2-x86-mingw32)
|
|
||||||
multi_json (~> 1.3)
|
|
||||||
git-version-bump (0.15.1)
|
git-version-bump (0.15.1)
|
||||||
glib2 (2.2.5)
|
glib2 (2.2.5)
|
||||||
pkg-config
|
pkg-config
|
||||||
@ -474,13 +491,14 @@ DEPENDENCIES
|
|||||||
binding_of_caller
|
binding_of_caller
|
||||||
bumbleberry!
|
bumbleberry!
|
||||||
capistrano
|
capistrano
|
||||||
capybara
|
|
||||||
carrierwave
|
carrierwave
|
||||||
carrierwave-imageoptimizer
|
carrierwave-imageoptimizer
|
||||||
coffee-rails (~> 4.0.0)
|
coffee-rails (~> 4.0.0)
|
||||||
copydb
|
copydb
|
||||||
coveralls
|
coveralls
|
||||||
cucumber-rails
|
cucumber!
|
||||||
|
cucumber-core!
|
||||||
|
cucumber-rails!
|
||||||
daemon-spawn
|
daemon-spawn
|
||||||
daemons
|
daemons
|
||||||
database_cleaner
|
database_cleaner
|
||||||
@ -489,6 +507,7 @@ DEPENDENCIES
|
|||||||
font-awesome-rails
|
font-awesome-rails
|
||||||
foundation-rails
|
foundation-rails
|
||||||
geocoder
|
geocoder
|
||||||
|
gherkin3 (>= 3.1.0)
|
||||||
guard-rspec
|
guard-rspec
|
||||||
haml
|
haml
|
||||||
haml-rails
|
haml-rails
|
||||||
|
@ -1778,48 +1778,8 @@ $header-tilt: 8deg;
|
|||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include keyframes(bouncy) {
|
|
||||||
from { transform: translateY(-0.25em); }
|
|
||||||
to { transform: translateY(0.25em); }
|
|
||||||
}
|
|
||||||
|
|
||||||
#lingua-franca-pointer {
|
|
||||||
$colour: $colour-5;
|
|
||||||
width: 0.6667em;
|
|
||||||
height: 1.25em;
|
|
||||||
background-color: $colour;
|
|
||||||
z-index: 1000;
|
|
||||||
margin-left: -0.5em;
|
|
||||||
margin-top: -2em;
|
|
||||||
@include _(mix-blend-mode, exclusion);
|
|
||||||
@include default-box-shadow(top, 2);
|
|
||||||
@include _(animation, bouncy 1s infinite alternate);
|
|
||||||
|
|
||||||
$twidth: 0.8em;
|
|
||||||
@include after {
|
|
||||||
content: '';
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
position: absolute;
|
|
||||||
border-style: solid;
|
|
||||||
border-color: $colour transparent transparent;
|
|
||||||
border-width: $twidth $twidth 0;
|
|
||||||
top: 100%;
|
|
||||||
left: -.4em;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.up {
|
|
||||||
margin-top: 2em;
|
|
||||||
|
|
||||||
@include after {
|
|
||||||
top: auto;
|
|
||||||
bottom: 100%;
|
|
||||||
border-color: transparent transparent $colour;
|
|
||||||
border-width: 0 $twidth $twidth;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.translated-content.block {
|
.translated-content.block {
|
||||||
display: inherit;
|
display: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@include translation-pointer;
|
||||||
|
4
app/assets/stylesheets/_email-example.scss
Normal file
4
app/assets/stylesheets/_email-example.scss
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
@import "bumbleberry";
|
||||||
|
@import "settings";
|
||||||
|
|
||||||
|
@include translation-pointer;
|
@ -41,3 +41,47 @@ $white: #FFFEFE;
|
|||||||
@include font(monospace);
|
@include font(monospace);
|
||||||
@include font(monospace-bold);
|
@include font(monospace-bold);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@mixin translation-pointer {
|
||||||
|
@include keyframes(bouncy) {
|
||||||
|
from { transform: translateY(-0.25em); }
|
||||||
|
to { transform: translateY(0.25em); }
|
||||||
|
}
|
||||||
|
|
||||||
|
#lingua-franca-pointer {
|
||||||
|
$colour: $colour-5;
|
||||||
|
width: 0.6667em;
|
||||||
|
height: 1.25em;
|
||||||
|
background-color: $colour;
|
||||||
|
z-index: 1000;
|
||||||
|
margin-left: -0.5em;
|
||||||
|
margin-top: -2em;
|
||||||
|
@include _(mix-blend-mode, exclusion);
|
||||||
|
@include default-box-shadow(top, 2);
|
||||||
|
@include _(animation, bouncy 1s infinite alternate);
|
||||||
|
|
||||||
|
$twidth: 0.8em;
|
||||||
|
@include after {
|
||||||
|
content: '';
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
position: absolute;
|
||||||
|
border-style: solid;
|
||||||
|
border-color: $colour transparent transparent;
|
||||||
|
border-width: $twidth $twidth 0;
|
||||||
|
top: 100%;
|
||||||
|
left: -.4em;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.up {
|
||||||
|
margin-top: 2em;
|
||||||
|
|
||||||
|
@include after {
|
||||||
|
top: auto;
|
||||||
|
bottom: 100%;
|
||||||
|
border-color: transparent transparent $colour;
|
||||||
|
border-width: 0 $twidth $twidth;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: UC Browser for Android 9.9 (approximately 5.94% of all users)
|
* Browser: UC Browser for Android 9.9 (approximately 7.1% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": n,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": n,
|
"ogv": n,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": n,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": n,
|
"xhr2": n,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": n,
|
"fieldset-disabled": n,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": n,
|
"form-attribute": n,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": u,
|
||||||
|
"ogg-vorbis": u,
|
||||||
|
"meter": n,
|
||||||
|
"progress": n,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": n,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": u,
|
||||||
|
"wbr-element": u,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": u,
|
||||||
|
"css-letter-spacing": u,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": u,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": n,
|
"ogv": n,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": n,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": n,
|
"xhr2": n,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": n,
|
"fieldset-disabled": n,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": n,
|
"form-attribute": n,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": u,
|
||||||
|
"ogg-vorbis": u,
|
||||||
|
"meter": n,
|
||||||
|
"progress": n,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": n,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": u,
|
||||||
|
"wbr-element": u,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": u,
|
||||||
|
"css-letter-spacing": u,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": u,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Android Browser 2.3 (approximately 0.07% of all users)
|
* Browser: Android Browser 2.3 (approximately 0.11% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": n,
|
"ogv": n,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": n,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": n,
|
"xhr2": n,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": n,
|
"fieldset-disabled": n,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": n,
|
"form-attribute": n,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": n,
|
||||||
|
"progress": n,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": n,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": a,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": n,
|
"ogv": n,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": n,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": n,
|
"fieldset-disabled": n,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": u,
|
"form-attribute": u,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": n,
|
||||||
|
"progress": n,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": u,
|
||||||
|
"link-rel-prefetch": n,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": u,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": u,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Android Browser 4.1 (approximately 0.75% of all users)
|
* Browser: Android Browser 4.1 (approximately 1.18% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": n,
|
"ogv": n,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": n,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": n,
|
"fieldset-disabled": n,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": n,
|
||||||
|
"progress": n,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": n,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Android Browser 4.2-4.3 (approximately 1.48% of all users)
|
* Browser: Android Browser 4.2-4.3 (approximately 2.57% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": n,
|
"ogv": n,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": n,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": n,
|
"fieldset-disabled": n,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": n,
|
||||||
|
"progress": n,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": n,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Android Browser 4.4.3-4.4.4 (approximately 1.13% of all users)
|
* Browser: Android Browser 4.4.3-4.4.4 (approximately 2.26% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": n,
|
"ogv": n,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": n,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Android Browser 4.4 (approximately 2.61% of all users)
|
* Browser: Android Browser 4.4 (approximately 0.02% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": n,
|
"ogv": n,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Android Browser 4 (approximately 0.22% of all users)
|
* Browser: Android Browser 4 (approximately 0.34% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": n,
|
"ogv": n,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": n,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": n,
|
"fieldset-disabled": n,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": n,
|
||||||
|
"progress": n,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": n,
|
"ogv": n,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": n,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Blackberry Browser 7 (approximately 0.09% of all users)
|
* Browser: Blackberry Browser 7 (approximately 0.11% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": n,
|
"ogv": n,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": n,
|
"fieldset-disabled": n,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": n,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": n,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": u,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": u,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": u,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": u,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": u,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": u,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": u,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": u,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 16 (approximately 0.01% of all users)
|
* Browser: Chrome 16 (approximately 0.02% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": nd,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": u,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": nd,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": u,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": nd,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": u,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 19 (approximately 0.02% of all users)
|
* Browser: Chrome 19 (approximately 0.01% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": nd,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": u,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": nd,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": u,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 21 (approximately 0.04% of all users)
|
* Browser: Chrome 21 (approximately 0.03% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": nd,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": u,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": u,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": u,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 24 (approximately 0.05% of all users)
|
* Browser: Chrome 24 (approximately 0.02% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": u,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": u,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 27 (approximately 0.04% of all users)
|
* Browser: Chrome 27 (approximately 0.03% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 28 (approximately 0.04% of all users)
|
* Browser: Chrome 28 (approximately 0.03% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 29 (approximately 0.05% of all users)
|
* Browser: Chrome 29 (approximately 0.03% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 30 (approximately 0.08% of all users)
|
* Browser: Chrome 30 (approximately 0.04% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 31 (approximately 0.76% of all users)
|
* Browser: Chrome 31 (approximately 0.83% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 32 (approximately 0.07% of all users)
|
* Browser: Chrome 32 (approximately 0.05% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 33 (approximately 0.16% of all users)
|
* Browser: Chrome 33 (approximately 0.13% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 34 (approximately 0.14% of all users)
|
* Browser: Chrome 34 (approximately 0.19% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 35 (approximately 0.26% of all users)
|
* Browser: Chrome 35 (approximately 0.19% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 36 (approximately 0.66% of all users)
|
* Browser: Chrome 36 (approximately 0.16% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 37 (approximately 0.9% of all users)
|
* Browser: Chrome 37 (approximately 0.19% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": y,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 38 (approximately 0.25% of all users)
|
* Browser: Chrome 38 (approximately 0.14% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": y,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 39 (approximately 0.52% of all users)
|
* Browser: Chrome 39 (approximately 0.28% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": y,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 4 (approximately 0.01% of all users)
|
* Browser: Chrome 4 (approximately 0.02% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": n,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": u,
|
"xhr2": u,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": n,
|
"form-attribute": n,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": u,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": n,
|
||||||
|
"progress": n,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": n,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": u,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 40 (approximately 0.54% of all users)
|
* Browser: Chrome 40 (approximately 0.29% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": y,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 41 (approximately 0.49% of all users)
|
* Browser: Chrome 41 (approximately 0.27% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": y,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": y,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": a,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 42 (approximately 0.85% of all users)
|
* Browser: Chrome 42 (approximately 0.5% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": y,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": y,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": a,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 43 (approximately 24.38% of all users)
|
* Browser: Chrome 43 (approximately 1.66% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": y,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": y,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": a,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 44 (approximately 0.13% of all users)
|
* Browser: Chrome 44 (approximately 24.57% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": y,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": y,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": a,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 45 (approximately 0.19% of all users)
|
* Browser: Chrome 45 (approximately 0.15% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": y,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -191,7 +191,7 @@ $browser_capabilities: (
|
|||||||
"promises": y,
|
"promises": y,
|
||||||
"css-sticky": n,
|
"css-sticky": n,
|
||||||
"dialog": y,
|
"dialog": y,
|
||||||
"css-variables": u,
|
"css-variables": n,
|
||||||
"vibration": y,
|
"vibration": y,
|
||||||
"css-backgroundblendmode": y,
|
"css-backgroundblendmode": y,
|
||||||
"css-mixblendmode": y,
|
"css-mixblendmode": y,
|
||||||
@ -232,10 +232,10 @@ $browser_capabilities: (
|
|||||||
"font-loading": y,
|
"font-loading": y,
|
||||||
"font-unicode-range": y,
|
"font-unicode-range": y,
|
||||||
"gamepad": y,
|
"gamepad": y,
|
||||||
"css-font-stretch": u,
|
"css-font-stretch": n,
|
||||||
"font-size-adjust": nd,
|
"font-size-adjust": nd,
|
||||||
"link-icon-png": y,
|
"link-icon-png": y,
|
||||||
"link-icon-svg": u,
|
"link-icon-svg": n,
|
||||||
"css-media-resolution": y,
|
"css-media-resolution": y,
|
||||||
"xml-serializer": y,
|
"xml-serializer": y,
|
||||||
"css-image-set": yx,
|
"css-image-set": yx,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": y,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": a,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Chrome 46 (approximately 0.0% of all users)
|
* Browser: Chrome 46 (approximately 0.17% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": y,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -169,7 +169,7 @@ $browser_capabilities: (
|
|||||||
"user-select-none": yx,
|
"user-select-none": yx,
|
||||||
"webp": y,
|
"webp": y,
|
||||||
"input-autocomplete-onoff": a,
|
"input-autocomplete-onoff": a,
|
||||||
"intrinsic-width": yx,
|
"intrinsic-width": y,
|
||||||
"cryptography": y,
|
"cryptography": y,
|
||||||
"template": y,
|
"template": y,
|
||||||
"opus": y,
|
"opus": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": y,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": a,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": y,
|
"wordwrap": y,
|
||||||
"progressmeter": y,
|
"pointerlock": y,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -169,7 +169,7 @@ $browser_capabilities: (
|
|||||||
"user-select-none": yx,
|
"user-select-none": yx,
|
||||||
"webp": y,
|
"webp": y,
|
||||||
"input-autocomplete-onoff": a,
|
"input-autocomplete-onoff": a,
|
||||||
"intrinsic-width": yx,
|
"intrinsic-width": y,
|
||||||
"cryptography": y,
|
"cryptography": y,
|
||||||
"template": y,
|
"template": y,
|
||||||
"opus": y,
|
"opus": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": y,
|
||||||
|
"aac": y,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": a,
|
||||||
|
"link-rel-prerender": y,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": n,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": u,
|
"xhr2": u,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": n,
|
"form-attribute": n,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": u,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": n,
|
||||||
|
"progress": n,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": n,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": u,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": n,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": u,
|
"xhr2": u,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": n,
|
"form-attribute": n,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": u,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": n,
|
||||||
|
"progress": n,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": n,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": u,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": n,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": n,
|
"form-attribute": n,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": u,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": n,
|
||||||
|
"progress": n,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": n,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": u,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": u,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": n,
|
"form-attribute": n,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": u,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": u,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": u,
|
"fieldset-disabled": u,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": n,
|
"form-attribute": n,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": n,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": a,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": n,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": yx,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": n,
|
"mpeg4": n,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": a,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": n,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": n,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": n,
|
"mpeg4": n,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": a,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": n,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": n,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": n,
|
"mpeg4": n,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": a,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": n,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": n,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": n,
|
"mpeg4": n,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": a,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": n,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": n,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": n,
|
"mpeg4": n,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": a,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": n,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": n,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 15 (approximately 0.03% of all users)
|
* Browser: Firefox 15 (approximately 0.02% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": n,
|
"mpeg4": n,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": a,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": n,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": n,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 16 (approximately 0.04% of all users)
|
* Browser: Firefox 16 (approximately 0.03% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": n,
|
"mpeg4": n,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": n,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": n,
|
"mpeg4": n,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": n,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": n,
|
"mpeg4": n,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": n,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": n,
|
"mpeg4": n,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": n,
|
"mpeg4": n,
|
||||||
"ogv": n,
|
"ogv": n,
|
||||||
"wordwrap": n,
|
"wordwrap": n,
|
||||||
"progressmeter": n,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": n,
|
"xhr2": n,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": n,
|
"fieldset-disabled": n,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": n,
|
"form-attribute": n,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": n,
|
||||||
|
"meter": n,
|
||||||
|
"progress": n,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": ax,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": a,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": n,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": n,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": n,
|
"mpeg4": n,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 21 (approximately 0.05% of all users)
|
* Browser: Firefox 21 (approximately 0.03% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 22 (approximately 0.02% of all users)
|
* Browser: Firefox 22 (approximately 0.03% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 23 (approximately 0.04% of all users)
|
* Browser: Firefox 23 (approximately 0.02% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 24 (approximately 0.05% of all users)
|
* Browser: Firefox 24 (approximately 0.04% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": nd,
|
"font-variant-alternates": nd,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 25 (approximately 0.05% of all users)
|
* Browser: Firefox 25 (approximately 0.03% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": nd,
|
"font-variant-alternates": nd,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 26 (approximately 0.04% of all users)
|
* Browser: Firefox 26 (approximately 0.03% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": nd,
|
"font-variant-alternates": nd,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": nd,
|
"font-variant-alternates": nd,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 28 (approximately 0.04% of all users)
|
* Browser: Firefox 28 (approximately 0.03% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": nd,
|
"font-variant-alternates": nd,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 29 (approximately 0.05% of all users)
|
* Browser: Firefox 29 (approximately 0.04% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": nd,
|
"font-variant-alternates": nd,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": n,
|
"mpeg4": n,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": n,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": n,
|
"fieldset-disabled": n,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": n,
|
"form-attribute": n,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": n,
|
||||||
|
"progress": n,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": ax,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": n,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": n,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 3.6 (approximately 0.05% of all users)
|
* Browser: Firefox 3.6 (approximately 0.04% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": n,
|
"mpeg4": n,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": n,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": n,
|
"fieldset-disabled": n,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": n,
|
"form-attribute": n,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": n,
|
||||||
|
"progress": n,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": ax,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": n,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": n,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": n,
|
"mpeg4": n,
|
||||||
"ogv": n,
|
"ogv": n,
|
||||||
"wordwrap": n,
|
"wordwrap": n,
|
||||||
"progressmeter": n,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": n,
|
"xhr2": n,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": n,
|
"fieldset-disabled": n,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": n,
|
"form-attribute": n,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": n,
|
||||||
|
"meter": n,
|
||||||
|
"progress": n,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": ax,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": a,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": n,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": n,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 30 (approximately 0.13% of all users)
|
* Browser: Firefox 30 (approximately 0.09% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": nd,
|
"font-variant-alternates": nd,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 31 (approximately 0.61% of all users)
|
* Browser: Firefox 31 (approximately 0.13% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": nd,
|
"font-variant-alternates": nd,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 32 (approximately 0.35% of all users)
|
* Browser: Firefox 32 (approximately 0.06% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": nd,
|
"font-variant-alternates": nd,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 33 (approximately 0.09% of all users)
|
* Browser: Firefox 33 (approximately 0.07% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": nd,
|
"font-variant-alternates": nd,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 34 (approximately 0.1% of all users)
|
* Browser: Firefox 34 (approximately 0.08% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": a,
|
"mpeg4": a,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": y,
|
"font-variant-alternates": y,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 35 (approximately 0.16% of all users)
|
* Browser: Firefox 35 (approximately 0.11% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": y,
|
"font-variant-alternates": y,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 36 (approximately 0.16% of all users)
|
* Browser: Firefox 36 (approximately 0.11% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": y,
|
"font-variant-alternates": y,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": nd,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 37 (approximately 0.36% of all users)
|
* Browser: Firefox 37 (approximately 0.17% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": y,
|
"font-variant-alternates": y,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": nd,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 38 (approximately 7.45% of all users)
|
* Browser: Firefox 38 (approximately 0.51% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": y,
|
"font-variant-alternates": y,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": nd,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 39 (approximately 0.25% of all users)
|
* Browser: Firefox 39 (approximately 4.0% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": y,
|
"font-variant-alternates": y,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": nd,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": n,
|
"mpeg4": n,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": n,
|
"pointerlock": n,
|
||||||
"object-fit": n,
|
"object-fit": n,
|
||||||
"xhr2": a,
|
"xhr2": a,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": n,
|
"font-variant-alternates": n,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": a
|
"es5": a,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": n,
|
||||||
|
"progress": n,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": n,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": n,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": n,
|
||||||
|
"css-initial-value": n,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": n,
|
||||||
|
"insertadjacenthtml": n,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": n,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 40 (approximately 0.01% of all users)
|
* Browser: Firefox 40 (approximately 3.31% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -55,7 +55,7 @@ $browser_capabilities: (
|
|||||||
"font-feature": y,
|
"font-feature": y,
|
||||||
"css-animation": y,
|
"css-animation": y,
|
||||||
"css-gradients": y,
|
"css-gradients": y,
|
||||||
"css-canvas": u,
|
"css-canvas": n,
|
||||||
"css-reflections": n,
|
"css-reflections": n,
|
||||||
"css-masks": a,
|
"css-masks": a,
|
||||||
"console-basic": y,
|
"console-basic": y,
|
||||||
@ -106,19 +106,19 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
"details": p,
|
"details": p,
|
||||||
"text-stroke": u,
|
"text-stroke": n,
|
||||||
"inline-block": y,
|
"inline-block": y,
|
||||||
"notifications": y,
|
"notifications": y,
|
||||||
"stream": yx,
|
"stream": yx,
|
||||||
"svg-img": y,
|
"svg-img": y,
|
||||||
"datalist": a,
|
"datalist": a,
|
||||||
"dataset": y,
|
"dataset": y,
|
||||||
"css-grid": u,
|
"css-grid": pd,
|
||||||
"menu": a,
|
"menu": a,
|
||||||
"css-zoom": n,
|
"css-zoom": n,
|
||||||
"rem": y,
|
"rem": y,
|
||||||
@ -210,7 +210,7 @@ $browser_capabilities: (
|
|||||||
"domcontentloaded": y,
|
"domcontentloaded": y,
|
||||||
"proximity": y,
|
"proximity": y,
|
||||||
"kerning-pairs-ligatures": y,
|
"kerning-pairs-ligatures": y,
|
||||||
"iframe-seamless": u,
|
"iframe-seamless": n,
|
||||||
"css-image-orientation": y,
|
"css-image-orientation": y,
|
||||||
"picture": y,
|
"picture": y,
|
||||||
"woff2": y,
|
"woff2": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": y,
|
"font-variant-alternates": y,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": nd,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 41 (approximately 0.0% of all users)
|
* Browser: Firefox 41 (approximately 0.13% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -118,7 +118,7 @@ $browser_capabilities: (
|
|||||||
"svg-img": y,
|
"svg-img": y,
|
||||||
"datalist": a,
|
"datalist": a,
|
||||||
"dataset": y,
|
"dataset": y,
|
||||||
"css-grid": u,
|
"css-grid": pd,
|
||||||
"menu": a,
|
"menu": a,
|
||||||
"css-zoom": n,
|
"css-zoom": n,
|
||||||
"rem": y,
|
"rem": y,
|
||||||
@ -165,7 +165,7 @@ $browser_capabilities: (
|
|||||||
"svg-fragment": y,
|
"svg-fragment": y,
|
||||||
"outline": y,
|
"outline": y,
|
||||||
"download": y,
|
"download": y,
|
||||||
"pointer": y,
|
"pointer": a,
|
||||||
"user-select-none": yx,
|
"user-select-none": yx,
|
||||||
"webp": p,
|
"webp": p,
|
||||||
"input-autocomplete-onoff": a,
|
"input-autocomplete-onoff": a,
|
||||||
@ -229,7 +229,7 @@ $browser_capabilities: (
|
|||||||
"css-clip-path": a,
|
"css-clip-path": a,
|
||||||
"getrandomvalues": y,
|
"getrandomvalues": y,
|
||||||
"screen-orientation": ax,
|
"screen-orientation": ax,
|
||||||
"font-loading": nd,
|
"font-loading": y,
|
||||||
"font-unicode-range": nd,
|
"font-unicode-range": nd,
|
||||||
"gamepad": y,
|
"gamepad": y,
|
||||||
"css-font-stretch": y,
|
"css-font-stretch": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": y,
|
"font-variant-alternates": y,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": y,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* ../application
|
* ../application
|
||||||
* Browser: Firefox 42 (approximately 0.0% of all users)
|
* Browser: Firefox 42 (approximately 0.01% of all users)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ $browser_capabilities: (
|
|||||||
"mpeg4": y,
|
"mpeg4": y,
|
||||||
"ogv": y,
|
"ogv": y,
|
||||||
"wordwrap": a,
|
"wordwrap": a,
|
||||||
"progressmeter": y,
|
"pointerlock": yx,
|
||||||
"object-fit": y,
|
"object-fit": y,
|
||||||
"xhr2": y,
|
"xhr2": y,
|
||||||
"minmaxwh": y,
|
"minmaxwh": y,
|
||||||
@ -118,7 +118,7 @@ $browser_capabilities: (
|
|||||||
"svg-img": y,
|
"svg-img": y,
|
||||||
"datalist": a,
|
"datalist": a,
|
||||||
"dataset": y,
|
"dataset": y,
|
||||||
"css-grid": u,
|
"css-grid": pd,
|
||||||
"menu": a,
|
"menu": a,
|
||||||
"css-zoom": n,
|
"css-zoom": n,
|
||||||
"rem": y,
|
"rem": y,
|
||||||
@ -165,7 +165,7 @@ $browser_capabilities: (
|
|||||||
"svg-fragment": y,
|
"svg-fragment": y,
|
||||||
"outline": y,
|
"outline": y,
|
||||||
"download": y,
|
"download": y,
|
||||||
"pointer": y,
|
"pointer": a,
|
||||||
"user-select-none": yx,
|
"user-select-none": yx,
|
||||||
"webp": p,
|
"webp": p,
|
||||||
"input-autocomplete-onoff": a,
|
"input-autocomplete-onoff": a,
|
||||||
@ -229,7 +229,7 @@ $browser_capabilities: (
|
|||||||
"css-clip-path": a,
|
"css-clip-path": a,
|
||||||
"getrandomvalues": y,
|
"getrandomvalues": y,
|
||||||
"screen-orientation": ax,
|
"screen-orientation": ax,
|
||||||
"font-loading": nd,
|
"font-loading": y,
|
||||||
"font-unicode-range": nd,
|
"font-unicode-range": nd,
|
||||||
"gamepad": y,
|
"gamepad": y,
|
||||||
"css-font-stretch": y,
|
"css-font-stretch": y,
|
||||||
@ -272,7 +272,28 @@ $browser_capabilities: (
|
|||||||
"fieldset-disabled": y,
|
"fieldset-disabled": y,
|
||||||
"font-variant-alternates": y,
|
"font-variant-alternates": y,
|
||||||
"form-attribute": y,
|
"form-attribute": y,
|
||||||
"es5": y
|
"es5": y,
|
||||||
|
"page-transition-events": y,
|
||||||
|
"ogg-vorbis": y,
|
||||||
|
"meter": y,
|
||||||
|
"progress": y,
|
||||||
|
"css-filter-function": n,
|
||||||
|
"css-element-function": yx,
|
||||||
|
"u2f": n,
|
||||||
|
"aac": a,
|
||||||
|
"link-rel-prefetch": y,
|
||||||
|
"ol-reversed": y,
|
||||||
|
"css-first-letter": y,
|
||||||
|
"wbr-element": y,
|
||||||
|
"css-all": y,
|
||||||
|
"css-initial-value": y,
|
||||||
|
"css-letter-spacing": y,
|
||||||
|
"css-unset-value": y,
|
||||||
|
"insertadjacenthtml": y,
|
||||||
|
"let": nd,
|
||||||
|
"link-rel-prerender": n,
|
||||||
|
"css-writing-mode": y,
|
||||||
|
"addeventlistener": y
|
||||||
);
|
);
|
||||||
|
|
||||||
@import "bumbleberry-settings";
|
@import "bumbleberry-settings";
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user