1--TEST--
2DOMAttr read $name property.
3--CREDITS--
4Nic Rosental <nicrosental@gmail.com>
5# TestFest Atlanta 2009-05-14
6--EXTENSIONS--
7dom
8--FILE--
9<?php
10$attr = new DOMAttr('category', 'books');
11print $attr->name;
12?>
13--EXPECT--
14category
15