This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 1876 - Validator complains that EMBED SRC is invalid
Summary: Validator complains that EMBED SRC is invalid
Status: RESOLVED INVALID
Alias: None
Product: Validator
Classification: Unclassified
Component: check (show other bugs)
Version: HEAD
Hardware: PC Windows XP
: P2 normal
Target Milestone: ---
Assignee: Terje Bless
QA Contact: qa-dev tracking
URL: http://www.peggyshealth.com
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-08-21 01:13 UTC by Phillip Bruce
Modified: 2005-11-29 19:43 UTC (History)
0 users

See Also:


Attachments

Description Phillip Bruce 2005-08-21 01:13:45 UTC
The EMBED tag is a legal tag and SRC is a legal attribute. It seems Validator 
reports that as an error.

Error Line 201 column 24: there is no attribute "SRC".
             <EMBED SRC="testsound.wav"></td>

The error above is what I get with the validator. I'm using HTML 4.01 as the 
standard. 

Phillip
Comment 1 Bj 2005-08-21 01:15:46 UTC
Could you cite the section of the HTML 4.01 Standard that defines the embed 
element?
Comment 2 ShInKurO 2005-11-29 14:19:13 UTC
I've the same problem with this code:

 <TABLE ALIGN="LEFT" BORDER="0" cellpadding="2">
            <TR>
            <TD>
            
            <EMBED WIDTH="160" HEIGHT="160" src="files/bastone.avi"
type="application/x-mplayer2">

            </EMBED>
            </TD>
            </TR>
            </TABLE>
 
and use HTML 4.01 Transitional...

ShInKurO