зеркало из https://github.com/mozilla/gecko-dev.git
17 строки
516 B
HTML
17 строки
516 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head><script>
|
|
function done() {
|
|
let video = document.querySelector("video");
|
|
let canvas = document.querySelector("canvas");
|
|
let context = canvas.getContext("2d");
|
|
context.drawImage(video, 30, 50, video.videoWidth, video.videoHeight);
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
</script></head>
|
|
<body bgcolor="gray">
|
|
<video src="video_rotated.mp4" onended="done()" autoplay="true"></video>
|
|
<canvas width="60" height="100"></canvas>
|
|
</body>
|
|
</html>
|