Home | History | Annotate | Download | only in resources

Lines Matching refs:SPACES

289    * Are newlines and adjacent spaces significant in the given node's innerHTML?
606 /** returns a function that expand tabs to spaces. This function can be fed
614 var SPACES = ' ';
631 // nSpaces is the amount of padding -- the number of spaces needed
636 for (; nSpaces >= 0; nSpaces -= SPACES.length) {
637 out.push(SPACES.substring(0, nSpaces));