Changeset 336 for cleversvg/trunk/tests/csCircleTest.php
- Timestamp:
- 03/07/08 08:33:04 (4 years ago)
- Files:
-
- 1 modified
-
cleversvg/trunk/tests/csCircleTest.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cleversvg/trunk/tests/csCircleTest.php
r333 r336 46 46 $doc->addElement($circle); 47 47 $xml = $doc->toXML(); 48 $this->assertEquals(preg_match('#z-index: 4#s', $xml), 1, $xml); 48 $this->assertAttrValueEquals($doc, '/svg:svg/svg:circle/@style', 'z-index: 4'); 49 $circle->setDepth(null); 50 $this->assertNodeAttrNotExists($doc, '/svg:svg/svg:circle', 'style'); 49 51 } 50 52
