I expect when I insert the JavaScript debugger statement into my JavaScript code that the program will pause at that point and the debugger will open showing the 'breakpoint'.
I'm not seeing this at all.
Here is my code.
<html>
<script type="text/javascript">
debugger;
alert("Hello world!")
</script>
<body>
<p>Hello world</p>
</body>
</html>
When I run it - I go straight to the 'alert' popup on screen. What is the step I'm missing?
My question is: Why doesn't the JavaScript debugger pause at debugger statement?
(Just to clarify - I had the developer tools open - but at the 'console' tab, not the 'sources' tab.)

