Home | History | Annotate | Download | only in number-format

Lines Matching full:intl

31 assertThrows('Intl.NumberFormat(undefined, {minimumIntegerDigits: 0})');
32 assertThrows('Intl.NumberFormat(undefined, {minimumIntegerDigits: 22})');
33 assertThrows('Intl.NumberFormat(undefined, {minimumIntegerDigits: null})');
34 assertThrows('Intl.NumberFormat(undefined, {minimumIntegerDigits: Infinity})');
35 assertThrows('Intl.NumberFormat(undefined, {minimumIntegerDigits: -Infinity})');
36 assertThrows('Intl.NumberFormat(undefined, {minimumIntegerDigits: x})');
38 assertThrows('Intl.NumberFormat(undefined, {minimumFractionDigits: -1})');
39 assertThrows('Intl.NumberFormat(undefined, {maximumFractionDigits: 21})');
41 assertThrows('Intl.NumberFormat(undefined, {minimumSignificantDigits: 0})');
42 assertThrows('Intl.NumberFormat(undefined, {maximumSignificantDigits: 22})');
43 assertThrows('Intl.NumberFormat(undefined, ' +
47 assertDoesNotThrow('Intl.NumberFormat(undefined, {minimumIntegerDigits: 1})');
48 assertDoesNotThrow('Intl.NumberFormat(undefined, {minimumIntegerDigits: 21})');
50 assertDoesNotThrow('Intl.NumberFormat(undefined, {minimumFractionDigits: 0})');
51 assertDoesNotThrow('Intl.NumberFormat(undefined, {minimumFractionDigits: 20})');
53 assertDoesNotThrow('Intl.NumberFormat(undefined, ' +
55 assertDoesNotThrow('Intl.NumberFormat(undefined, ' +