You appear to be a bot. Output may be restricted
Description
Usage
Tests_Filter_oEmbed_Result::test_filter_oembed_result_without_iframe();
Parameters
Returns
void
Source
File name: wordpress-develop-tests/phpunit/tests/oembed/filterResult.php
Lines:
1 to 12 of 12
public function test_filter_oembed_result_without_iframe() { $html = '<span>Hello</span><p>World</p>'; $actual = wp_filter_oembed_result( $html, (object) array( 'type' => 'rich' ), '' ); $this->assertFalse( $actual ); $html = '<div><p></p></div><script></script>'; $actual = wp_filter_oembed_result( $html, (object) array( 'type' => 'rich' ), '' ); $this->assertFalse( $actual ); }