Home
last modified time | relevance | path

Searched refs:isLengthOrPercent (Results 1 – 1 of 1) sorted by relevance

/template/scanlines/htc/PIE-1.0beta5/
H A DPIE_uncompressed.js673 else if( tokens[0].isLengthOrPercent() ) {
683 else if( tokens[1].isLengthOrPercent() ) {
979 isLengthOrPercent: function() { method in Tokenizer.Token
1429 …return token && token.isLengthOrPercent() || ( token.tokenType & type_ident && token.tokenValue in…
1433 …return token && ( ( token.isLengthOrPercent() && PIE.getLength( token.tokenValue ) ) || ( token.to…
1479 if( token.isLengthOrPercent() ) {
1853 while( ( token = tokenizer.next() ) && token.isLengthOrPercent() ) {
1945 …return !token.isLengthOrPercent() && !( ( token.tokenType & IDENT ) && token.tokenValue === 'auto'…
2026 … return tok.isLengthOrPercent() ? PIE.getLength( tok.tokenValue ) : tok.tokenValue;