summaryrefslogtreecommitdiff
path: root/ext/dom/tests/bug36756.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/dom/tests/bug36756.phpt')
-rw-r--r--ext/dom/tests/bug36756.phpt35
1 files changed, 0 insertions, 35 deletions
diff --git a/ext/dom/tests/bug36756.phpt b/ext/dom/tests/bug36756.phpt
deleted file mode 100644
index e24f9f0804..0000000000
--- a/ext/dom/tests/bug36756.phpt
+++ /dev/null
@@ -1,35 +0,0 @@
---TEST--
-Bug #36756: (DOMDocument::removeChild corrupts node)
---SKIPIF--
-<?php require_once('skipif.inc'); ?>
---FILE--
-<?php
-
-/* Node is preserved from removeChild */
-$dom = new DOMDocument();
-$dom->loadXML('<root><child/></root>');
-$xpath = new DOMXpath($dom);
-$node = $xpath->query('/root')->item(0);
-echo $node->nodeName . "\n";
-$dom->removeChild($GLOBALS['dom']->firstChild);
-echo "nodeType: " . $node->nodeType . "\n";
-
-/* Node gets destroyed during removeChild */
-$dom->loadXML('<root><child/></root>');
-$xpath = new DOMXpath($dom);
-$node = $xpath->query('//child')->item(0);
-echo $node->nodeName . "\n";
-$GLOBALS['dom']->removeChild($GLOBALS['dom']->firstChild);
-
-echo "nodeType: " . $node->nodeType . "\n";
-
-?>
---EXPECTF--
-root
-nodeType: 1
-child
-
-Warning: Couldn't fetch DOMElement. Node no longer exists in %sbug36756.php on line %d
-
-Notice: Undefined property: DOMElement::$nodeType in %sbug36756.php on line %d
-nodeType: