- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 14 Apr 2009 17:12:25 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/tests/validation/full/invalid/unknown-attribute In directory hutz:/tmp/cvs-serv20834 Modified Files: t Added Files: figure.html figure.xhtml Log Message: initial add Index: t =================================================================== RCS file: /sources/public/html5/tests/validation/full/invalid/unknown-attribute/t,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- t 14 Apr 2009 14:02:01 -0000 1.1 +++ t 14 Apr 2009 17:12:23 -0000 1.2 @@ -1,6 +1,10 @@ #!/bin/bash -cp applet.xhtml $1.xhtml -cp applet.html $1.html -sed -i "s/applet/$1/g" $1*html +if [ -n "$2" ] +then src=$2 +else src="applet" +fi +cp $src.xhtml $1.xhtml +cp $src.html $1.html +sed -i "s/$src/$1/g" $1*html cvs add $1*html cvs commit -m "initial add" --- NEW FILE: figure.html --- <!DOCTYPE html> <html> <head> <title>element figure with invalid attribute</title> </head> <body> <figure> <figure bar="foo">baz</figure> </figure> </body> </html> --- NEW FILE: figure.xhtml --- <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>element figure with invalid attribute</title> </head> <body> <figure> <figure bar="foo">baz</figure> </figure> </body> </html>
Received on Tuesday, 14 April 2009 17:12:34 UTC