Please look at the following code:
\documentclass{article}
\usepackage{amsmath}
%\usepackage{fontspec,unicode-math}
\begin{document}
\Huge
\begin{equation}
\frac{x^{2}}{x^{2}}
\end{equation}
\begin{equation}
x^{2} / x^{2}
\end{equation}
\end{document}
As usual the denominator is printed ugly in the cramped style. With pdfTeX it is possible to switch off the cramped style as shown here:
Bad spacing of exponents in denominator
(Look at Gustavo Mezzetti's post.)
I would like to find such a solution for LuaLaTeX, so I read its manual (pages 84ff.):
http://www.luatex.org/svn/trunk/manual/luatex.pdf
I found some hints:
\Umathsupshiftup\crampeddisplaystyle=\the\Umathsupshiftup\textstyle
\Umathsupshiftup\crampedtextstyle=\the\Umathsupshiftup\textstyle
I added these lines, but the result is still the same. What do I make wrong?

