mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
22 lines
565 B
JavaScript
22 lines
565 B
JavaScript
/*!
|
|
{
|
|
"name": "iframe[sandbox] Attribute",
|
|
"property": "sandbox",
|
|
"caniuse": "iframe-sandbox",
|
|
"tags": ["iframe"],
|
|
"builderAliases": ["iframe_sandbox"],
|
|
"notes": [
|
|
{
|
|
"name": "WHATWG Spec",
|
|
"href": "https://html.spec.whatwg.org/multipage/embedded-content.html#attr-iframe-sandbox"
|
|
}],
|
|
"knownBugs": ["False-positive on Firefox < 29"]
|
|
}
|
|
!*/
|
|
/* DOC
|
|
Test for `sandbox` attribute in iframes.
|
|
*/
|
|
define(['Modernizr', 'createElement'], function(Modernizr, createElement) {
|
|
Modernizr.addTest('sandbox', 'sandbox' in createElement('iframe'));
|
|
});
|