diff options
Diffstat (limited to 'Zend/tests/bug35655.phpt')
-rwxr-xr-x | Zend/tests/bug35655.phpt | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/Zend/tests/bug35655.phpt b/Zend/tests/bug35655.phpt deleted file mode 100755 index e35764a60e..0000000000 --- a/Zend/tests/bug35655.phpt +++ /dev/null @@ -1,25 +0,0 @@ ---TEST-- -Bug #35655 (whitespace following end of heredoc is lost) ---INI-- -highlight.string = #DD0000 -highlight.comment = #FF8000 -highlight.keyword = #007700 -highlight.bg = #FFFFFF -highlight.default = #0000BB -highlight.html = #000000 ---FILE-- -<?php -$code = ' -<?php - $x = <<<EOT -some string -EOT - $y = 2; -?>'; -highlight_string($code); -?> ---EXPECT-- -<code><span style="color: #000000"> -<br /><span style="color: #0000BB"><?php<br /> $x </span><span style="color: #007700">= <<<EOT<br /></span><span style="color: #0000BB">some string <br /></span><span style="color: #007700">EOT<br /> </span><span style="color: #0000BB">$y </span><span style="color: #007700">= </span><span style="color: #0000BB">2</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">?></span> -</span> -</code> |