Home | History | Annotate | Download | only in mac

Lines Matching refs:listStyleType

1135         NSString *listStyleType = [self _stringForNode:element property:@"list-style-type"];
1136 if (!listStyleType || [listStyleType length] == 0) listStyleType = @"disc";
1137 list = [[NSTextList alloc] initWithMarkerFormat:[NSString stringWithFormat:@"{%@}", listStyleType] options:0];
1142 NSString *listStyleType = [self _stringForNode:element property:@"list-style-type"];
1143 if (!listStyleType || [listStyleType length] == 0) listStyleType = @"decimal";
1144 list = [[NSTextList alloc] initWithMarkerFormat:[NSString stringWithFormat:@"{%@}.", listStyleType] options:0];