diff options
Diffstat (limited to 'lib/htmlpurifier/smoketests/dataScheme.php')
-rw-r--r-- | lib/htmlpurifier/smoketests/dataScheme.php | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/lib/htmlpurifier/smoketests/dataScheme.php b/lib/htmlpurifier/smoketests/dataScheme.php new file mode 100644 index 000000000..7c0bbdc36 --- /dev/null +++ b/lib/htmlpurifier/smoketests/dataScheme.php @@ -0,0 +1,37 @@ +<?php + +require_once 'common.php'; + +echo '<?xml version="1.0" encoding="UTF-8" ?>'; +?><!DOCTYPE html + PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> + <title>HTML Purifier data Scheme Smoketest</title> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +</head> +<body> +<h1>HTML Purifier data Scheme Smoketest</h1> +<?php + +$string = '<img src="data:image/png;base64, +iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABGdBTUEAALGP +C/xhBQAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9YGARc5KB0XV+IA +AAAddEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIFRoZSBHSU1Q72QlbgAAAF1J +REFUGNO9zL0NglAAxPEfdLTs4BZM4DIO4C7OwQg2JoQ9LE1exdlYvBBeZ7jq +ch9//q1uH4TLzw4d6+ErXMMcXuHWxId3KOETnnXXV6MJpcq2MLaI97CER3N0 +vr4MkhoXe0rZigAAAABJRU5ErkJggg==" alt="Red dot" />'; + +$purifier = new HTMLPurifier(array('URI.AllowedSchemes' => 'data')); + +?> +<div><?php +echo $purifier->purify($string); +?></div> + +</body> +</html> +<?php + +// vim: et sw=4 sts=4 |