NOTE: The current preferred location for bug reports is the GitHub issue tracker.
Bug 683 - some legacy attributes missing in relaxng
some legacy attributes missing in relaxng
Status: RESOLVED FIXED
Product: Validator.nu
Classification: Unclassified
Component: HTML5 schema
HEAD
All All
: P2 normal
Assigned To: Michael[tm] Smith
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2009-11-23 16:12 CET by Simon Pieters
Modified: 2009-11-25 10:28 CET (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Simon Pieters 2009-11-23 16:12:20 CET
The following attributes give both the relaxng message and the obsolete message in http://qa-dev.w3.org:8888/

<link charset>
<link rev>
<input type=image usemap>
<link target>
<meta scheme>
<object archive>
<object classid>
<object code>
Comment 1 Michael[tm] Smith 2009-11-25 10:28:04 CET
I fixed two problems: I added object/@code, and I corrected handling of meta/@scheme

validator r331
http://whattf.browse.cvsdude.com/validator?view=rev&revision=331

... but that's all I fixed. The other attributes were already supported in the code -- but it may be that I just had not synced up qa-dev.

Anyway, this is what I just now tested with on http://qa-dev.w3.org:8888/ -

<!DOCTYPE html>
<html>
<head>
<link charset=foo href=bar rel=foo>
<link href=bar rel=foo rev=bar>
<link href=bar rel=foo target=bar>
<meta name=foo content=foo scheme=bar>
<title></title>
</head>
<body>
<input type=image src=url alt=foo usemap=foo>
<object archive=foo data=foo></object>
<object classid=foo data=foo></object>
<object code=foo data=foo></object>
</body>
</html>

And I got expected results, so I'm marking this resolved=fixed. Please re-open it if you find it's not actually working as expected.