In my optimization class we are using the Boyd and Vandenberghe Convex Optimization textbook, which gives the following stopping criterion for backtracking line search (p. 464):
$$f(x + t \Delta x) \leq f(x) + \alpha t \nabla f(x)^T \Delta x$$
Here $\alpha$ is a parameter on $(0, 1/2)$. These bounds are used when proving the following fact related to gradient descent: If $0 \leq t \leq 1/M$ and $\alpha \lt 1/2$, then
$$f(x - t \nabla f(x)) \leq f(x) - \alpha t || \nabla f(x) ||^2$$
The proof given is
$$\begin{align} f(x - t \nabla f(x)) & \leq f(x) - t || \nabla f(x) ||^2 + \frac{Mt^2}{2} || \nabla f(x) ||^2 &\text{(Taylor's theorem)}\\ & \leq f(x) - \frac{t}{2} || \nabla f(x) ||^2 & (\text{because} -t + Mt^2/2 \leq -t/2)\\ & \leq f(x) - \alpha t || \nabla f(x) ||^2 \end{align}$$
But considering the geometry of the method, it seems to me like it should be "safe" to pick any $\alpha \lt 1$. And this more general limit is mentioned on Wikipedia and this wiki.
Beyond the simplicity of the proof above, is there a deeper reason for restricting $\alpha$ to $(0, 1/2)$?