Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
Vlkn
/
plugins-dist
/
safehtml
/
lib
/
xemlock
/
htmlpurifier-html5
/
library
/
HTMLPurifier
/
HTMLModule
/
HTML5
:
Scripting.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /* * HTML5 Scripting * * WARNING: THIS MODULE IS EXTREMELY DANGEROUS AS IT ENABLES INLINE SCRIPTING * INSIDE HTML PURIFIER DOCUMENTS. USE ONLY WITH TRUSTED USER INPUT!!! * * https://www.w3.org/TR/html50/scripting-1.html */ class HTMLPurifier_HTMLModule_HTML5_Scripting extends HTMLPurifier_HTMLModule { /** * @type string */ public $name = 'HTML5_Scripting'; /** * @type bool */ public $safe = false; /** * @param HTMLPurifier_Config $config */ public function setup($config) { $noscript = $this->addElement('noscript', 'Flow', 'Required: Flow | #PCDATA', 'Common'); $noscript->excludes = array('noscript' => true); $this->addElementToContentSet('noscript', 'Inline'); $scriptContents = new HTMLPurifier_ChildDef_HTML5_Script(); $script = $this->addElement('script', 'Inline', $scriptContents, null, array( 'src' => new HTMLPurifier_AttrDef_URI(true), 'type' => new HTMLPurifier_AttrDef_Enum(array( // https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types#textjavascript 'text/javascript', )), 'async' => new HTMLPurifier_AttrDef_HTML_Bool2(), 'defer' => new HTMLPurifier_AttrDef_HTML_Bool2(), 'crossorigin' => 'Enum#anonymous', 'integrity' => new HTMLPurifier_AttrDef_HTML5_IntegrityMetadata(), // If present, charset value must be an ASCII case-insensitive match for "utf-8" // https://web.archive.org/web/20171005001148/https://html.spec.whatwg.org/multipage/scripting.html#the-script-element // Deprecated, removed from the spec on 6 Oct 2017 'charset' => 'Enum#utf-8', )); $script->attr_transform_pre[] = new HTMLPurifier_AttrTransform_HTML5_Script(); } }