attr is typed String when it should be XMLList. Thanks.
package org.alivepdf.html
{
public final class HTMLTag
{
public var tag:String;
public var attr:XMLList;
public var value:String;
public function HTMLTag( tag:String, attr:XMLList, value:String )
{
this.tag = tag;
this.attr = attr;
this.value = value;
}
}
}
Original issue reported on code.google.com by a...@stephensweb.co.uk on 26 Feb 2010 at 10:02
Original issue reported on code.google.com by
a...@stephensweb.co.uk
on 26 Feb 2010 at 10:02