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