1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-07-31 19:30:21 +02:00

feat: Add allowfullscreen attr for iframe (#411)

This commit is contained in:
John Flatness
2024-06-30 07:54:09 -04:00
committed by GitHub
parent 972326785d
commit 70754a2533
2 changed files with 26 additions and 11 deletions

View File

@@ -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