- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 25 Feb 2010 10:30:49 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/schema
In directory hutz:/tmp/cvs-serv24370/schema
Modified Files:
media.rnc
Log Message:
sync to upstream spec rename of autobuffer attribute to "preload"
Index: media.rnc
===================================================================
RCS file: /sources/public/html5/markup/schema/media.rnc,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- media.rnc 3 Feb 2010 14:44:06 -0000 1.4
+++ media.rnc 25 Feb 2010 10:30:47 -0000 1.5
@@ -38,7 +38,7 @@
video.attrs =
( common.attrs
& video.attrs.autoplay?
- & video.attrs.autobuffer?
+ & video.attrs.preload?
& video.attrs.controls?
& video.attrs.loop?
& video.attrs.poster?
@@ -49,9 +49,9 @@
attribute autoplay {
w:string "autoplay" | w:string ""
}
- video.attrs.autobuffer =
- attribute autobuffer {
- w:string "autobuffer" | w:string ""
+ video.attrs.preload =
+ attribute preload {
+ w:string "preload" | w:string ""
}
video.attrs.controls =
attribute controls {
@@ -102,7 +102,7 @@
audio.attrs =
( common.attrs
& audio.attrs.autoplay?
- & audio.attrs.autobuffer?
+ & audio.attrs.preload?
& audio.attrs.controls?
& audio.attrs.loop?
)
@@ -110,9 +110,9 @@
attribute autoplay {
w:string "autoplay" | w:string ""
}
- audio.attrs.autobuffer =
- attribute autobuffer {
- w:string "autobuffer" | w:string ""
+ audio.attrs.preload =
+ attribute preload {
+ w:string "preload" | w:string ""
}
audio.attrs.controls =
attribute controls {
Received on Thursday, 25 February 2010 10:30:51 UTC