forked from Modernizr/Modernizr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added detection of type worker option and aspect ratio (Modernizr#2702)
* added detection of workeroption and aspectratio css property * update aspectration.js rename workeroptions.js to workertypeoption.js update config-all.json and caniuse.js and all testcase passed * update caniuse * revert package-lock.json file * apply requested changes on both files
- Loading branch information
1 parent
4d36bb2
commit 59ab0b3
Showing
4 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/*! | ||
{ | ||
"name": "aspectratio css property", | ||
"property": "aspectratio", | ||
"tags": ["css aspectratio", "aspect-ratio"], | ||
"builderAliases": ["aspectratio"], | ||
"caniuse":"mdn-css_properties_aspect-ratio", | ||
"authors": ["Debadutta Panda"], | ||
"notes": [{ | ||
"name": "MDN Docs", | ||
"href": "https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio" | ||
}] | ||
} | ||
!*/ | ||
/* DOC | ||
Detect working status of all aspectratio css property | ||
https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio | ||
*/ | ||
define(['Modernizr', 'createElement'], function (Modernizr, createElement) { | ||
Modernizr.addTest("aspectratio", function () { | ||
if (typeof CSS !== "object" && typeof CSS.supports === "function") { | ||
return CSS.supports('aspect-ratio', '1 / 1') | ||
} else { | ||
var element = createElement('p'), | ||
elStyle = element.style | ||
if ('aspectRatio' in elStyle) { | ||
elStyle.cssText = 'aspect-ratio:1 / 1' | ||
element.remove() | ||
return (elStyle['aspectRatio'] === '1 / 1'); | ||
} else { | ||
element.remove(); | ||
return false; | ||
} | ||
} | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/*! | ||
{ | ||
"name": "worker type option test", | ||
"property": "workertypeoption", | ||
"caniuse":"mdn-api_worker_worker_ecmascript_modules", | ||
"tags": ["web worker type options", "web worker"], | ||
"builderAliases": ["worker_type_options"], | ||
"authors": ["Debadutta Panda"], | ||
"notes": [{ | ||
"name": "MDN Docs", | ||
"href": "https://developer.mozilla.org/en-US/docs/Web/API/Worker/Worker" | ||
}] | ||
} | ||
!*/ | ||
/* DOC | ||
Detect working status of all Workeroptions | ||
https://developer.mozilla.org/en-US/docs/Web/API/Worker/Worker | ||
*/ | ||
define(['Modernizr'], function (Modernizr) { | ||
Modernizr.addTest("workertypeoption", function () { | ||
if ('Worker' in window) { | ||
var isTypeOptionSupported = false, | ||
textTypeOption = { | ||
get type() { | ||
isTypeOptionSupported = true; | ||
return "module" | ||
} | ||
}, | ||
scriptText = `var message='hello'`, | ||
blob = new Blob([scriptText], { type: 'text/javascript' }), | ||
url = URL.createObjectURL(blob) | ||
try { | ||
new Worker(url, textTypeOption).terminate(); | ||
return isTypeOptionSupported; | ||
} catch (err) { | ||
return false; | ||
} | ||
} else { | ||
return false; | ||
} | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters