Number: 2059
Title: COLSPAN value in html table graphs
Submitter: Bo Svangard
Date: Wed Oct 20 03:54:42 2010
Subsys: Dot
Version: dot - graphviz version 2.26.3 (20100126.1600)
System: *-*-Debian stable
Severity: minor
Problem:
The following code generates a graph with first rowlength not matching second row length, since COLSPAN adds to 900 in both first and second row, the linewidth should match!!

Also reported as a bug #600710, http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=600710 to debian bugtracking system!
Input:

digraph html {
    abc [shape=none, margin=0, label=<
<TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0" CELLPADDING="4">
       <TR>
        <TD COLSPAN="900">10</TD>
       </TR>
       <TR>
       <TD COLSPAN="500">5</TD>
       <TD COLSPAN="200">2</TD>
       <TD COLSPAN="200">2</TD>

</TR>
</TABLE>>];
}
Owner: erg
Status: Fixed (20 Oct 2010)