[Webkit-unassigned] [Bug 224685] [GTK] Blurry images on various news websites

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu May 13 11:08:08 PDT 2021


https://bugs.webkit.org/show_bug.cgi?id=224685

--- Comment #3 from Michael Catanzaro <mcatanzaro at gnome.org> ---
OK it's really simple. The window size is indeed set incorrectly. This script reproduces the bug:

<body>
  <p><a id="link">New tab!</a></p>
</body>
<script>
  var p = document.createElement("P");
  var t = document.createTextNode(`width=${window.innerWidth}`);
  p.appendChild(t);
  document.body.appendChild(p);

  document.getElementById("link").href = document.URL;
</script>

Load it in an open window and it will print the window width. Open it in a new tab and quickly switch to the new tab, and it will print the window width. Open it in a new tab and allow the tab to load in the background, and it will print 0.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20210513/b18ddce7/attachment-0001.htm>


More information about the webkit-unassigned mailing list