You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<title>window.devicePixelRatio in an undisplayed iframe matches the dpi of the parent document</title>
<div style="display: none">
<iframe src="about:blank"></iframe>
</div>
<script>
onload = function() {
test(function() {
let win = document.querySelector("iframe").contentWindow;
assert_equals(win.devicePixelRatio, window.devicePixelRatio, "window.devicePixelRatio in an undisplayed iframe matches the dpi of the parent document");