summaryrefslogtreecommitdiff
path: root/ext/dom/tests/DOMDocument_loadHTML_basic.phpt
diff options
context:
space:
mode:
authorAnt Phillips <ant@php.net>2008-12-01 11:30:39 +0000
committerAnt Phillips <ant@php.net>2008-12-01 11:30:39 +0000
commit0410026ac0725f25e10a946316cf8d5f98bc122f (patch)
tree87cf026dd384028df32c144cc5162add24f21425 /ext/dom/tests/DOMDocument_loadHTML_basic.phpt
parent8786ee7ce0d7d855a1b41ad3a5e59507939542c7 (diff)
downloadphp-git-0410026ac0725f25e10a946316cf8d5f98bc122f.tar.gz
DOM tests: checked on PHP 5.2.6, 5.3 and 6.0 (Windows, Linux and Linux 64 bit).
Diffstat (limited to 'ext/dom/tests/DOMDocument_loadHTML_basic.phpt')
-rw-r--r--ext/dom/tests/DOMDocument_loadHTML_basic.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dom/tests/DOMDocument_loadHTML_basic.phpt b/ext/dom/tests/DOMDocument_loadHTML_basic.phpt
index 839bd0f923..616d1d8371 100644
--- a/ext/dom/tests/DOMDocument_loadHTML_basic.phpt
+++ b/ext/dom/tests/DOMDocument_loadHTML_basic.phpt
@@ -13,6 +13,6 @@ $doc = new DOMDocument();
$doc->loadHTML("<html><body><p>Test<br></p></body></html>");
echo $doc->saveHTML();
?>
---EXPECT--
+--EXPECTF--
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html><body><p>Test<br></p></body></html>