HTML5のテストの方法が分かりません
http://www.youtube.com/html5 で試用版を有効にし、html5 と JavaScriptで以下のように書きました。
[test.html]
<!DOCTYPE html>
<html><head><script type="text/JavaScript" src="test.js"></script></head>
<body><video id="video_player" src="http://www.youtube.com/demo/google_main.mp4" controls autobuffer>
<p>ビデオ再生</p></video>
<input type="button" value="10秒 スキップ" onclick="skip()" /></body>
</html>
------------------
[test.js]
function skip() {
document.getElementById("video_player").currentTimes += 10;
}
-------------------
test.html を GoogleChrome で開きましたが、黒いバーと「[10秒 スキップ」ボタンが表示されるだけで、ボタンを
クリックしても何も動きません。 HTML5 のテストはどのようにして行うのでしょうか?
お礼
お返事ありがとうございます。 せつめいぶそくでした。ビデオドライバのテストの事です。