footnote does not scale properly with using fontspec. Any idea how to solve this problem? Already tried realscripts and xltxtra but no luck. Thanks,
\documentclass[12pt]{article}
\usepackage[english]{babel}
\usepackage{fontspec}
\setmainfont{Times New Roman}
\newcommand{\phont}[1]{\fontspec[Scale=#1]{Times New Roman}}
\begin{document}\noindent
{\phont{1} test\footnote{test}}\\
{\phont{2} test\footnote{test}}\\
{\phont{3} test\footnote{test}}\\
{\phont{1}test\textsuperscript{1}}\\
{\phont{2}test\textsuperscript{2}}\\
{\phont{3}test\textsuperscript{3}}
\end{document}

