iOS 13.4.1 上的 PWA:文本选择停止工作

PWA on iOS 13.4.1: Text selection stopped to work

我的 iPhone XR 上安装了 PWA。
在最近的 iOS 更新后,我在 iPhone XR 上的 PWA 中无法使用文本选择。
同样适用于 iPhone XS Max。

文本选择似乎在 PWA 中被阻止:/
如果您对此案有任何帮助,我们将不胜感激。

经过一番调查:
显然,在 iPhone XR(至少)上使用 <meta name="apple-mobile-web-app-capable" content="yes" /> 的 PWA 的文本选择被破坏了。

向 webkit 提交了错误
https://bugs.webkit.org/show_bug.cgi?id=212299

最小可重现性html:

<!DOCTYPE html>
<html>
<head>
  <title>test text selection</title>
  <meta name="apple-mobile-web-app-capable" content="yes" />
</head>

<body>
  Try to select this text.<br/>
  Should be selectable but it is not on my iPhone XR.
</body>

</html>