- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 13 Apr 2009 06:56:00 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/tests/validation/full/invalid/unknown-attribute In directory hutz:/tmp/cvs-serv682 Modified Files: dt.html dt.xhtml Log Message: fixed Index: dt.xhtml =================================================================== RCS file: /sources/public/html5/tests/validation/full/invalid/unknown-attribute/dt.xhtml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- dt.xhtml 13 Apr 2009 06:54:57 -0000 1.1 +++ dt.xhtml 13 Apr 2009 06:55:58 -0000 1.2 @@ -1,8 +1,11 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>element dt with invalid attribute</title> +<title>element dd with invalid attribute</title> </head> <body> -<dt bar="foo">baz</dt> +<dl> +<dt bar="foo"></dt> +<dd>baz</dd> +</dl> </body> </html> Index: dt.html =================================================================== RCS file: /sources/public/html5/tests/validation/full/invalid/unknown-attribute/dt.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- dt.html 13 Apr 2009 06:54:57 -0000 1.1 +++ dt.html 13 Apr 2009 06:55:58 -0000 1.2 @@ -4,6 +4,9 @@ <title>element dt with invalid attribute</title> </head> <body> -<dt bar="foo">baz</dt> +<dl> +<dt bar="foo"></dt> +<dd>baz</dd> +</dl> </body> </html>
Received on Monday, 13 April 2009 06:56:09 UTC