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 6782 - BUG: Target attribute is allowed in XHTML1.1
Summary: BUG: Target attribute is allowed in XHTML1.1
Status: RESOLVED FIXED
Alias: None
Product: Amaya
Classification: Unclassified
Component: Editing (show other bugs)
Version: unspecified
Hardware: PC All
: P1 critical
Target Milestone: ---
Assignee: Vatton
QA Contact: Vatton
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-04-06 16:07 UTC by lee pickering
Modified: 2009-04-06 16:07 UTC (History)
8 users (show)

See Also:


Attachments

Description lee pickering 2009-04-06 16:07:04 UTC
+++ This bug was initially created as a clone of Bug #6597 +++

The validator sais that the target attribute is allowed in xhtml 1.1, but it isn't!

An example code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title></title></head>
<body><div>
     <form action="..." target="something">
<div><input type="button" name="submit"/></div>
</form></div></body></html>

This document is validated as 'Valid', but it contains target...