Changeset 46895 for trunk/tests/phpunit/tests/kses.php
- Timestamp:
- 12/12/2019 05:52:18 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/kses.php
r46793 r46895 180 180 } 181 181 182 $bad_not_normalized = array( 183 'dummy:alert(1)', 184 'javascript:alert(1)', 185 'javascript&CoLon;alert(1)', 186 'javascript:alert(1);', 187 'javascript:alert(1);', 188 'javascript:alert(1);', 189 'javascript:alert(1);', 190 'jav ascript:alert(1);', 191 'javascript:javascript:alert(1);', 192 'javascript:javascript:alert(1);', 193 'javascript:javascript:alert(1);', 194 'javascript:javascript:alert(1);', 195 'javascript:alert(1)', 196 ); 197 foreach ( $bad_not_normalized as $k => $x ) { 198 $result = wp_kses_bad_protocol( $x, wp_allowed_protocols() ); 199 if ( ! empty( $result ) && 'alert(1);' !== $result && 'alert(1)' !== $result ) { 200 $this->fail( "wp_kses_bad_protocol failed on $k, $x. Result: $result" ); 201 } 202 } 203 182 204 $safe = array( 183 205 'dummy:alert(1)',
Note: See TracChangeset
for help on using the changeset viewer.