mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-12-22 00:11:52 +00:00
feat: Add allowfullscreen attr for iframe (#411)
This commit is contained in:
parent
972326785d
commit
70754a2533
@ -28,22 +28,28 @@ class HTMLPurifier_HTMLModule_Iframe extends HTMLPurifier_HTMLModule
|
|||||||
if ($config->get('HTML.SafeIframe')) {
|
if ($config->get('HTML.SafeIframe')) {
|
||||||
$this->safe = true;
|
$this->safe = true;
|
||||||
}
|
}
|
||||||
|
$attrs = array(
|
||||||
|
'src' => 'URI#embedded',
|
||||||
|
'width' => 'Length',
|
||||||
|
'height' => 'Length',
|
||||||
|
'name' => 'ID',
|
||||||
|
'scrolling' => 'Enum#yes,no,auto',
|
||||||
|
'frameborder' => 'Enum#0,1',
|
||||||
|
'longdesc' => 'URI',
|
||||||
|
'marginheight' => 'Pixels',
|
||||||
|
'marginwidth' => 'Pixels',
|
||||||
|
);
|
||||||
|
|
||||||
|
if ($config->get('HTML.Trusted')) {
|
||||||
|
$attrs['allowfullscreen'] = 'Bool#allowfullscreen';
|
||||||
|
}
|
||||||
|
|
||||||
$this->addElement(
|
$this->addElement(
|
||||||
'iframe',
|
'iframe',
|
||||||
'Inline',
|
'Inline',
|
||||||
'Flow',
|
'Flow',
|
||||||
'Common',
|
'Common',
|
||||||
array(
|
$attrs
|
||||||
'src' => 'URI#embedded',
|
|
||||||
'width' => 'Length',
|
|
||||||
'height' => 'Length',
|
|
||||||
'name' => 'ID',
|
|
||||||
'scrolling' => 'Enum#yes,no,auto',
|
|
||||||
'frameborder' => 'Enum#0,1',
|
|
||||||
'longdesc' => 'URI',
|
|
||||||
'marginheight' => 'Pixels',
|
|
||||||
'marginwidth' => 'Pixels',
|
|
||||||
)
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
--INI--
|
||||||
|
HTML.SafeIframe = true
|
||||||
|
HTML.Trusted = true
|
||||||
|
URI.SafeIframeRegexp = "%^http://www.youtube.com/embed/%"
|
||||||
|
--HTML--
|
||||||
|
<iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/RVtEQxH7PWA" frameborder="0" allowfullscreen></iframe>
|
||||||
|
--EXPECT--
|
||||||
|
<iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/RVtEQxH7PWA" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
|
||||||
|
--# vim: et sw=4 sts=4
|
Loading…
Reference in New Issue
Block a user