(rv)
| 529 | /* Flash Player and SWF content version matching |
| 530 | */ |
| 531 | function hasPlayerVersion(rv) { |
| 532 | var pv = ua.pv, v = rv.split("."); |
| 533 | v[0] = parseInt(v[0], 10); |
| 534 | v[1] = parseInt(v[1], 10) || 0; // supports short notation, e.g. "9" instead of "9.0.0" |
| 535 | v[2] = parseInt(v[2], 10) || 0; |
| 536 | return (pv[0] > v[0] || (pv[0] == v[0] && pv[1] > v[1]) || (pv[0] == v[0] && pv[1] == v[1] && pv[2] >= v[2])) ? true : false; |
| 537 | } |
| 538 | |
| 539 | /* Cross-browser dynamic CSS creation |
| 540 | - Based on Bobby van der Sluis' solution: http://www.bobbyvandersluis.com/articles/dynamicCSS.php |
no outgoing calls
no test coverage detected
searching dependent graphs…