Lines Matching full:space
507 const UChar space = ' ';
508 int spaceWidth = f.width(TextRun(&space, 1));
554 return c == ' ' || (c == noBreakSpace && style->nbspMode() == SPACE);
613 bool breakNBSP = style()->autoWrap() && style()->nbspMode() == SPACE;
945 // Spec: When xml:space="preserve", the SVG user agent will do the following using a
947 // characters into space characters. Then, it will draw all space characters, including
948 // leading, trailing and multiple contiguous space characters.
952 // If xml:space="preserve" is set, white-space is set to "pre", which
953 // preserves leading, trailing & contiguous space character for us.
955 // Spec: When xml:space="default", the SVG user agent will do the following using a
957 // characters. Then it will convert all tab characters into space characters.
958 // Then, it will strip off all leading and trailing space characters.
959 // Then, all contiguous space characters will be consolidated.
963 // If xml:space="default" is set, white-space is set to "nowrap", which handles
964 // leading, trailing & contiguous space character removal for us.