mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-09 23:28:42 +00:00
8cd08620dc
Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
13 lines
949 B
Plaintext
13 lines
949 B
Plaintext
--SKIPIF--
|
|
return !function_exists('hash_hmac');
|
|
--INI--
|
|
HTML.SafeObject = true
|
|
HTML.SafeEmbed = true
|
|
URI.Munge = "/redirect.php?url=%s&check=%t"
|
|
URI.MungeSecretKey = "foo"
|
|
--HTML--
|
|
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/Oq3FV_zdyy0&hl=en"></param><embed src="http://www.youtube.com/v/Oq3FV_zdyy0&hl=en" type="application/x-shockwave-flash" width="425" height="344"></embed></object>
|
|
--EXPECT--
|
|
<object width="425" height="344" data="http://www.youtube.com/v/Oq3FV_zdyy0&hl=en" type="application/x-shockwave-flash"><param name="allowScriptAccess" value="never" /><param name="allowNetworking" value="internal" /><param name="movie" value="http://www.youtube.com/v/Oq3FV_zdyy0&hl=en" /><embed src="http://www.youtube.com/v/Oq3FV_zdyy0&hl=en" type="application/x-shockwave-flash" width="425" height="344" allowscriptaccess="never" allownetworking="internal" /></object>
|
|
--# vim: et sw=4 sts=4
|