Stage.displayState

if(stage.displayState == StageDisplayState.NORMAL){
    trace(1);
}else{
    trace(2);
}

put this code on the timeline and compile, it traces 2.
why?