mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 23:21:04 +00:00
19 lines
487 B
JavaScript
19 lines
487 B
JavaScript
/*!
|
|
{
|
|
"name": "iframe[seamless] Attribute",
|
|
"property": "seamless",
|
|
"tags": ["iframe"],
|
|
"builderAliases": ["iframe_seamless"],
|
|
"notes": [{
|
|
"name": "WHATWG Spec",
|
|
"href": "https://html.spec.whatwg.org/multipage/embedded-content.html#attr-iframe-seamless"
|
|
}]
|
|
}
|
|
!*/
|
|
/* DOC
|
|
Test for `seamless` attribute in iframes.
|
|
*/
|
|
define(['Modernizr', 'createElement'], function(Modernizr, createElement) {
|
|
Modernizr.addTest('seamless', 'seamless' in createElement('iframe'));
|
|
});
|