swfdetect.html revision b5ea9923e255f649110ea11465ba8db74a5eb395
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus<html>
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus<head>
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus<title>swfdetect tests</title>
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus<link type="text/css" rel="stylesheet" href="/build/logreader/assets/skins/sam/logreader.css" />
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus<script type="text/javascript" src="/build/yui/yui.js"></script>
5a3bd0ef762b8a3238869ac9963194555e39e6a7jpikus</head>
<body class="yui-skin-sam">
<h1>SWFDetect Tests</h1>
<div id="testoutput"></div>
<script type="text/javascript">
YUI({
base: '/build/',
filter: "raw",
modules: {
swfdetect: {
path: "swfdetect/swfdetect.js"
}
}
}).use('swfdetect', function (Y) {
output = "";
output += "Flash Major: " + String(Y.UA.flashMajor) + "<br/>";
output += "Flash Minor: " + String(Y.UA.flashMinor) + "<br/>";
output += "Flash Revision: " + String(Y.UA.flashRev) + "<br/>";
document.getElementById('testoutput').innerHTML = output;
});
</script>
</body>
</html>