We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c25b897 commit 7cc03b1Copy full SHA for 7cc03b1
tests/HTMLProcessorTest.php
@@ -67,6 +67,16 @@ public function internalLinkProvider() {
67
'http://someotherdomain.com',
68
true,
69
],
70
+ 'external FQU, protocol relative' => [
71
+ '//example.com/category/travel/photos/001.jpg',
72
+ '',
73
+ false,
74
+ ],
75
+ 'external FQU with matching domain as 2nd arg' => [
76
+ 'http://someotherdomain.com/category/travel/photos/001.jpg',
77
+ 'http://someotherdomain.com',
78
+ true,
79
80
'not external FQU' => [
81
'http://someothersite.com/category/travel/photos/001.jpg',
82
'',
0 commit comments