php-src/ext/dom/tests/DOMDocument_createAttribute_variation.phpt

15 lines
249 B
Plaintext
Raw Normal View History

2008-05-15 12:50:28 +00:00
--TEST--
Test DOMDocument::createAttribute() for expected return value
2008-12-30 15:56:44 +00:00
--SKIPIF--
<?php require_once('skipif.inc'); ?>
2008-05-15 12:50:28 +00:00
--FILE--
<?php
$dom = new DOMDocument();
$attr = $dom->createAttribute('string');
echo get_class($attr);
?>
--EXPECTF--
2008-05-15 12:50:28 +00:00
DOMAttr