* Returns an array of elements with the given IDs * q & t are added here for the iFrame's context
()
| 1800 | * q & t are added here for the iFrame's context |
| 1801 | */ |
| 1802 | function q() { |
| 1803 | var r = [], |
| 1804 | i = 0; |
| 1805 | |
| 1806 | for ( ; i < arguments.length; i++ ) { |
| 1807 | r.push( document.getElementById( arguments[ i ] ) ); |
| 1808 | } |
| 1809 | return r; |
| 1810 | } |
| 1811 | |
| 1812 | /** |
| 1813 | * Asserts that a select matches the given IDs |
no outgoing calls
no test coverage detected