facebook

HTML Clean up document adding extra src to tag

  1. MyEclipse Archived
  2.  > 
  3. Web Development (HTML, CSS, etc.)
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #232810 Reply

    jsents
    Member

    When using HTML “Clean up document” an extra src = gets added to the <img> tag when the src attribute is capitalized.

    Current Version
    JDK = 1.5.0_03
    MyEclipse = 4.0 Milestone 2
    Eclipse = 3.1.0

    Options selected

    Tag name case for HTML
    Upper

    Attribute name case for HTML
    Lower

    Insert required attributes (Checked)
    Insert missing tags (Checked)
    Quote attribute Values (Checked)
    Format source (un-Checked)
    Convert Line Deliters to (un-checked)

    Sample code block that has problem

    
    <table BORDER=0 CELLPADDING=0 CELLSPACING=0 ><tr>
            <TD>
                <IMG SRC='someimage.jpeg'></TD>
        
    </tr>
    </table>
    

    Converts to

    
    <TABLE border="0" cellpadding="0" cellspacing="0" ><TR>
            <TD>
                <IMG src='someimage.jpeg' src="" alt=""></TD>
        
    </TR>
    </TABLE>
    
    #232811 Reply

    Riyad Kalla
    Member

    Ahh very strange we’ll get that fixed, thank you for the report.

Viewing 2 posts - 1 through 2 (of 2 total)
Reply To: HTML Clean up document adding extra src to tag

You must be logged in to post in the forum log in