swfdetect.html revision 43fe9bba01c587029abe1df7417e3ac10e2caccb
910N/A<link type="text/css" rel="stylesheet" href="/build/logreader/assets/skins/sam/logreader.css" />
550N/A var flashMajor = String(Y.UA.flashMajor),
550N/A flashMinor = String(Y.UA.flashMinor),
550N/A flashRev = String(Y.UA.flashRev),
550N/A output += '* Higher? ' + String(Y.SWFDetect.isFlashVersionAtLeast(flashMajor + 1)) + '<br/>';
550N/A output += '* Lower: ' + String(Y.SWFDetect.isFlashVersionAtLeast(flashMajor, flashMinor - 1)) + '<br/>';
550N/A output += '* Same ' + String(Y.SWFDetect.isFlashVersionAtLeast(flashMajor, flashMinor)) + '<br/>';
550N/A output += '* Higher? ' + String(Y.SWFDetect.isFlashVersionAtLeast(flashMajor, flashMinor + 1)) + '<br/>';
550N/A output += '* Lower: ' + String(Y.SWFDetect.isFlashVersionAtLeast(flashMajor, flashMinor, flashRev - 1)) + '<br/>';
550N/A output += '* Same ' + String(Y.SWFDetect.isFlashVersionAtLeast(flashMajor, flashMinor, flashRev)) + '<br/>';
550N/A output += '* Higher? ' + String(Y.SWFDetect.isFlashVersionAtLeast(flashMajor, flashMinor, flashRev + 1)) + '<br/>';
550N/Adocument.getElementById('testoutput').innerHTML = output;