I read that "\pagebreak tries to make the part of the page that’s above the page break the same height as other pages if it’s possible (by stretching intervals between paragraphs etc) and \newpage just fills the page with empty space." in the accepted answer to this question: \pagebreak vs \newpage:

However, when I tried using them myself with the following code:
\documentclass{article}
\usepackage{lipsum}
\begin{document}
\section{}
\lipsum[1-2]
\pagebreak
\section{}
\lipsum[3-4]
\newpage
\section{}
\lipsum[1-2]
\end{document}
I don't think the text on any of my pages has spread out:

What is happening? Is it that I'm using the 2 commands incorrectly?