From 8f3e6433b295ab84438348cebfa6d4835e5a78e3 Mon Sep 17 00:00:00 2001 From: Hannes Magnusson Date: Sun, 5 Jun 2011 11:31:18 +0000 Subject: [PATCH] No need to fetch external files and endless amount of DTDs for this test --- ext/dom/examples/note.dtd | 4 ++-- .../DOMDocument_validate_on_parse_variation.phpt | 11 ++++------- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/ext/dom/examples/note.dtd b/ext/dom/examples/note.dtd index 4016eb5811..c2d558eee4 100644 --- a/ext/dom/examples/note.dtd +++ b/ext/dom/examples/note.dtd @@ -1,6 +1,6 @@ - + - \ No newline at end of file + diff --git a/ext/dom/tests/DOMDocument_validate_on_parse_variation.phpt b/ext/dom/tests/DOMDocument_validate_on_parse_variation.phpt index 2395b01344..403e01aa76 100644 --- a/ext/dom/tests/DOMDocument_validate_on_parse_variation.phpt +++ b/ext/dom/tests/DOMDocument_validate_on_parse_variation.phpt @@ -6,17 +6,14 @@ Hans Zaunere --SKIPIF-- --FILE-- resolveExternals = TRUE; @@ -27,7 +24,7 @@ $dom->loadXML($XMLStringGood); echo "No Error Report Above\n"; $BogusElement = $dom->createElement('NYPHP','DOMinatrix'); -$Body = $dom->getElementsByTagName('body')->item(0); +$Body = $dom->getElementsByTagName('from')->item(0); $Body->appendChild($BogusElement); $XMLStringBad = $dom->saveXML(); @@ -44,6 +41,6 @@ validateOnParse set to TRUE: Warning: DOMDocument::loadXML(): No declaration for element NYPHP in Entity, line: %d in %s on line %d -Warning: DOMDocument::loadXML(): Element body content does not follow the DTD, expecting (p | h1 | h2 | h3 | h4 | h5 | h6 | div | ul | ol | dl | pre | hr | blockquote | address | fieldset | table | form | noscript | ins | del | script)*, got (div div div div div NYPHP) in Entity, line: %d in %s on line %d +Warning: DOMDocument::loadXML(): Element from was declared #PCDATA but contains non text nodes in Entity, line: %d in %s on line %d Error Report Above -- 2.40.0