Safari webkit 构建/修订
如何检查特定 Safari 二进制文件中使用了 webkit 的哪个版本(svn 版本)?例如,我想知道 Mac 上最新的 Safari(snow leopard 10.6.7)使用的是哪个版本。
用户代理不提供此信息:(
How can I check which revision (svn revision) of webkit is used in a specific Safari binary? For example, I'd like to know which revision is used in the newest Safari on Mac (snow leopard 10.6.7).
User-agent doesn't provide this information :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 User-Agent 中显示的 Webkit 版本标签获得近似值:
让我们以以下 user-agent 为例:
Webkit 版本在此宣传为
537.13+
。此版本标记是从以下源文件生成的:https://trac .webkit.org/browser/trunk/Source/WebCore/Configurations/Version.xcconfig
然后您可以查看哪些 SVN 修订版本嵌入了此特定版本标记。
You can get an approximation using the version tag of Webkit as it appears in User-Agent :
Let's take for example the following user-agent :
Webkit version is advertised here as
537.13+
. This version tag is generated from following source file :https://trac.webkit.org/browser/trunk/Source/WebCore/Configurations/Version.xcconfig
You could then take a look at which SVN revisions embeded this specifig version tag.