(state)
| 1040 | + (_noDeltaButtons ? ' test-inputs-slider-no-delta-buttons' : ''); |
| 1041 | } |
| 1042 | function setRangeInputState(state) { |
| 1043 | if (!isObject(state)) { |
| 1044 | console.error( |
| 1045 | errMsgPrefix + ' Range input state must be object rather than ' + printObject(state) |
| 1046 | + ' May caused by test case change.' |
| 1047 | ); |
| 1048 | return; |
| 1049 | } |
| 1050 | var newVal = +state.value; |
| 1051 | if (!isFinite(newVal)) { |
| 1052 | console.error( |
| 1053 | errMsgPrefix + ' Range input state.value must be number rather than ' + printObject(state) |
| 1054 | + ' May caused by test case change.' |
| 1055 | ); |
| 1056 | return; |
| 1057 | } |
| 1058 | _currVal = newVal; |
| 1059 | resetRangeInputDisabled({disabled: state.disabled}); |
| 1060 | updateRangeInputViewValue(_currVal); |
| 1061 | } |
| 1062 | function getRangeInputState() { |
| 1063 | return { |
| 1064 | value: _currVal, |
nothing calls this directly
no test coverage detected
searching dependent graphs…