- Timestamp:
- 11/04/2021 03:22:47 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/dependencies/wpSanitizeScriptAttributes.php
r50409 r52010 10 10 class Tests_Functions_wpSanitizeScriptAttributes extends WP_UnitTestCase { 11 11 12 function test_sanitize_script_attributes_type_set() {12 public function test_sanitize_script_attributes_type_set() { 13 13 add_theme_support( 'html5', array( 'script' ) ); 14 14 … … 40 40 } 41 41 42 function test_sanitize_script_attributes_type_not_set() {42 public function test_sanitize_script_attributes_type_not_set() { 43 43 add_theme_support( 'html5', array( 'script' ) ); 44 44 … … 69 69 70 70 71 function test_sanitize_script_attributes_no_attributes() {71 public function test_sanitize_script_attributes_no_attributes() { 72 72 add_theme_support( 'html5', array( 'script' ) ); 73 73 … … 80 80 } 81 81 82 function test_sanitize_script_attributes_relative_src() {82 public function test_sanitize_script_attributes_relative_src() { 83 83 add_theme_support( 'html5', array( 'script' ) ); 84 84 … … 98 98 99 99 100 function test_sanitize_script_attributes_only_false_boolean_attributes() {100 public function test_sanitize_script_attributes_only_false_boolean_attributes() { 101 101 add_theme_support( 'html5', array( 'script' ) ); 102 102 … … 114 114 } 115 115 116 function test_sanitize_script_attributes_only_true_boolean_attributes() {116 public function test_sanitize_script_attributes_only_true_boolean_attributes() { 117 117 add_theme_support( 'html5', array( 'script' ) ); 118 118
Note: See TracChangeset
for help on using the changeset viewer.