diff -r 77975abeec41 media-source/media-source-respec.html --- a/media-source/media-source-respec.html Thu Jan 31 14:20:54 2013 -0800 +++ b/media-source/media-source-respec.html Mon Feb 11 12:47:13 2013 -0500 @@ -1,4 +1,4 @@ - + @@ -811,6 +811,7 @@
  • If equals true and this object is ready to accept more bytes, then set the to false.
  • Set the attribute to false.
  • +
  • at this SourceBuffer object.
  • at this SourceBuffer object.
  • @@ -849,19 +850,24 @@ transitions from false to true. + update + Event + The append or remove has successfully completed. transitions from true to false. + + updateend Event - transitions from true to false. + The append or remove has ended. error Event - An error occurred during the append. + An error occurred during the append. transitions from true to false. abort Event - The append or remove was aborted by an call. + The append or remove was aborted by an call. transitions from true to false. @@ -946,6 +952,7 @@
  • Need more data: If the algorithm is running and still has data to read, then abort these steps.
  • Set the attribute to false.
  • +
  • at this SourceBuffer object.
  • at this SourceBuffer object.
  • @@ -1009,6 +1016,7 @@
  • Run the algorithm.
  • Jump to the loop top step above.
  • Loop Done: Set the attribute to false.
  • +
  • at this SourceBuffer object.
  • at this SourceBuffer object.
  • diff -r 77975abeec41 media-source/media-source.js --- a/media-source/media-source.js Thu Jan 31 14:20:54 2013 -0800 +++ b/media-source/media-source.js Mon Feb 11 12:47:13 2013 -0500 @@ -93,7 +93,8 @@ 'decode': { func: idlref_helper, fragment: 'idl-def-EndOfStreamError', link_text: '"decode"', }, 'updatestart': { func: eventref_helper, fragment: 'updatestart', link_text: 'updatestart', }, - 'updateend': { func: eventref_helper, fragment: 'updateend', link_text: 'updateend', }, + 'update': { func: eventref_helper, fragment: 'update', link_text: 'update', }, + 'updateend': { func: eventref_helper, fragment: 'updateend', link_text: 'updateend', }, 'updateerror': { func: eventref_helper, fragment: 'error', link_text: 'error', }, 'updateabort': { func: eventref_helper, fragment: 'abort', link_text: 'abort', },