riadvice / AlivePDF

[Official AlivePDF] - AlivePDF is a client side AS3 PDF generation library for Adobe Flash, Flex and AIR
https://riadvice.github.io/AlivePDF/
32 stars 6 forks source link

HTMLTag class contains bug #198

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago
Fixed in r263.

Original comment by felix.ge...@gmail.com on 8 Oct 2011 at 5:10