[html5] r6372 - / images
whatwg at whatwg.org
whatwg at whatwg.org
Thu Aug 4 15:02:46 PDT 2011
Author: ianh
Date: 2011-08-04 15:02:44 -0700 (Thu, 04 Aug 2011)
New Revision: 6372
Modified:
complete.html
images/media-stream-2.png
index
source
Log:
[e] (0) Fix typos
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=13222
Modified: complete.html
===================================================================
--- complete.html 2011-08-04 21:54:06 UTC (rev 6371)
+++ complete.html 2011-08-04 22:02:44 UTC (rev 6372)
@@ -75451,7 +75451,7 @@
fillText('from', 4, 130);
fillText('getUserMedia()', 4, 140);
- fillText('via URL.getObjectURL()', 4, 450);
+ fillText('via URL.createObjectURL()', 4, 450);
textAlign = 'center';
fillText('via addStream()', 550, 450);
@@ -76104,7 +76104,7 @@
var video = document.getElementById('monitor');
var canvas = document.getElementById('photo');
function gotStream(stream) {
- video.src = URL.getObjectURL(stream);
+ video.src = URL.createObjectURL(stream);
video.onerror = function () {
stream.stop();
};
@@ -76870,7 +76870,7 @@
local.onaddstream = function (event) {
// (videoElement is some <video> element)
- videoElement.src = URL.getObjectURL(event.stream);
+ videoElement.src = URL.createObjectURL(event.stream);
};</pre>
</div>
Modified: images/media-stream-2.png
===================================================================
(Binary files differ)
Modified: index
===================================================================
--- index 2011-08-04 21:54:06 UTC (rev 6371)
+++ index 2011-08-04 22:02:44 UTC (rev 6372)
@@ -75349,7 +75349,7 @@
fillText('from', 4, 130);
fillText('getUserMedia()', 4, 140);
- fillText('via URL.getObjectURL()', 4, 450);
+ fillText('via URL.createObjectURL()', 4, 450);
textAlign = 'center';
fillText('via addStream()', 550, 450);
@@ -76002,7 +76002,7 @@
var video = document.getElementById('monitor');
var canvas = document.getElementById('photo');
function gotStream(stream) {
- video.src = URL.getObjectURL(stream);
+ video.src = URL.createObjectURL(stream);
video.onerror = function () {
stream.stop();
};
@@ -76768,7 +76768,7 @@
local.onaddstream = function (event) {
// (videoElement is some <video> element)
- videoElement.src = URL.getObjectURL(event.stream);
+ videoElement.src = URL.createObjectURL(event.stream);
};</pre>
</div>
Modified: source
===================================================================
--- source 2011-08-04 21:54:06 UTC (rev 6371)
+++ source 2011-08-04 22:02:44 UTC (rev 6372)
@@ -86008,7 +86008,7 @@
fillText('from', 4, 130);
fillText('getUserMedia()', 4, 140);
- fillText('via URL.getObjectURL()', 4, 450);
+ fillText('via URL.createObjectURL()', 4, 450);
textAlign = 'center';
fillText('via addStream()', 550, 450);
@@ -86748,7 +86748,7 @@
var video = document.getElementById('monitor');
var canvas = document.getElementById('photo');
function gotStream(stream) {
- video.src = URL.getObjectURL(stream);
+ video.src = URL.createObjectURL(stream);
video.onerror = function () {
stream.stop();
};
@@ -87664,7 +87664,7 @@
local.onaddstream = function (event) {
// (videoElement is some <video> element)
- videoElement.src = URL.getObjectURL(event.stream);
+ videoElement.src = URL.createObjectURL(event.stream);
};</pre>
</div>
More information about the Commit-Watchers
mailing list