We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 930a907 + 6cd315d commit bf83161Copy full SHA for bf83161
data/js/detect/os.js
@@ -210,7 +210,11 @@ window.os_detect.getVersion = function(){
210
// Thanks to developer.mozilla.org "Firefox for developers" series for most
211
// of these.
212
// Release changelogs: http://www.mozilla.org/en-US/firefox/releases/
213
- if (css_is_valid('background-attachment',
+ if (css_is_valid('image-orientation',
214
+ 'imageOrientation',
215
+ '0deg')) {
216
+ ua_version = '26.0';
217
+ } else if (css_is_valid('background-attachment',
218
'backgroundAttachment',
219
'local')) {
220
ua_version = '25.0';
0 commit comments