OO.ui.RadioInputWidget.prototype.restorePreInfuseState = function ( state ) {
    OO.ui.RadioInputWidget.super.prototype.restorePreInfuseState.call( this, state );
    if ( state.checked !== undefined && state.checked !== this.isSelected() ) {
        this.setSelected( state.checked );
    }