So, using that
<xsl:for-each select="./@*">
[<xsl:value-of/><xsl:value-of select="."/>]
</xsl:for-each>
I can iterate over attribute values. But I want to see attribute names too.
I want see a table: attr1 - val1 attr2 - val2 attr3 - val3 ...
Thanks for help!