- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 03 Feb 2010 14:44:09 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/schema
In directory hutz:/tmp/cvs-serv6303/schema
Modified Files:
media.rnc web-forms2.rnc
Log Message:
documenting attributes with empty values better
Index: web-forms2.rnc
===================================================================
RCS file: /sources/public/html5/markup/schema/web-forms2.rnc,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- web-forms2.rnc 29 Aug 2009 01:43:08 -0000 1.1
+++ web-forms2.rnc 3 Feb 2010 14:44:06 -0000 1.2
@@ -551,7 +551,7 @@
}
input.url.attrs.value =
attribute value {
- w:string "" | common.data.uri.absolute
+ string "" | common.data.uri.absolute
}
input.elem |= input.url.elem
Index: media.rnc
===================================================================
RCS file: /sources/public/html5/markup/schema/media.rnc,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- media.rnc 2 Feb 2010 05:22:34 -0000 1.3
+++ media.rnc 3 Feb 2010 14:44:06 -0000 1.4
@@ -45,6 +45,22 @@
& video.attrs.height?
& video.attrs.width?
)
+ video.attrs.autoplay =
+ attribute autoplay {
+ w:string "autoplay" | w:string ""
+ }
+ video.attrs.autobuffer =
+ attribute autobuffer {
+ w:string "autobuffer" | w:string ""
+ }
+ video.attrs.controls =
+ attribute controls {
+ w:string "controls" | w:string ""
+ }
+ video.attrs.loop =
+ attribute loop {
+ w:string "loop" | w:string ""
+ }
video.attrs.poster =
attribute poster {
common.data.uri
@@ -90,6 +106,22 @@
& audio.attrs.controls?
& audio.attrs.loop?
)
+ audio.attrs.autoplay =
+ attribute autoplay {
+ w:string "autoplay" | w:string ""
+ }
+ audio.attrs.autobuffer =
+ attribute autobuffer {
+ w:string "autobuffer" | w:string ""
+ }
+ audio.attrs.controls =
+ attribute controls {
+ w:string "controls" | w:string ""
+ }
+ audio.attrs.loop =
+ attribute loop {
+ w:string "loop" | w:string ""
+ }
audio.attrs.src =
attribute src {
common.data.uri
Received on Wednesday, 3 February 2010 14:44:13 UTC