Changeset 48132 for trunk/tests/phpunit/tests/kses.php
- Timestamp:
- 06/23/2020 05:05:57 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/kses.php
r48086 r48132 630 630 false, 631 631 ), 632 // using digit in attribute name should work 633 array( 634 'href="https://example.com/[shortcode attr=\'value\']" data-op3-timer-seconds="0"', 635 array( 'href="https://example.com/[shortcode attr=\'value\']" ', 'data-op3-timer-seconds="0"' ), 636 ), 637 // using underscore in attribute name should work 638 array( 639 'href="https://example.com/[shortcode attr=\'value\']" data-op_timer-seconds="0"', 640 array( 'href="https://example.com/[shortcode attr=\'value\']" ', 'data-op_timer-seconds="0"' ), 641 ), 642 // using period in attribute name should work 643 array( 644 'href="https://example.com/[shortcode attr=\'value\']" data-op.timer-seconds="0"', 645 array( 'href="https://example.com/[shortcode attr=\'value\']" ', 'data-op.timer-seconds="0"' ), 646 ), 647 // using digit at a beginning of attribute name should return false 648 array( 649 'href="https://example.com/[shortcode attr=\'value\']" 3data-op-timer-seconds="0"', 650 false, 651 ), 632 652 ); 633 653 }
Note: See TracChangeset
for help on using the changeset viewer.