screen info
Display and device diagnostics
Screen resolution, viewport, device pixel ratio, refresh rate, browser capabilities, WebGL info, fullscreen and dead pixel tests. Everything is read locally in your browser.
Fullscreen test
Enter fullscreen to see the exact usable display dimensions your browser reports. Press Escape at any time to exit.
Dead pixel test
Look for pixels that remain a different color from the rest of the screen. Tap or press the arrow keys to cycle through solid colors. Press Escape or the Close button to exit at any time.
This does not enter fullscreen automatically. Use the Fullscreen Test first if you want to check the entire panel.
Explanations
Screen resolution vs viewport
Screen resolution is the total pixel grid of your monitor or phone. The browser viewport is the drawable area inside your window; it excludes the address bar, the OS taskbar, and any docked panels. On a maximized desktop window the two are close but rarely identical.
What device pixel ratio means
Device pixel ratio (DPR) is the number of physical pixels that make up one CSS pixel. A DPR of 2 means each CSS pixel is drawn as a 2 x 2 block of physical pixels; a 1280 CSS-pixel wide viewport occupies 2560 physical pixels on the panel. Retina and most modern phone screens report a DPR of 2 or 3.
Why your viewport is smaller than your screen
Even when a browser is full width, the OS taskbar, browser chrome, and any dev tools panel reduce the viewport. On phones the address bar also shrinks and grows as you scroll.
Refresh rate, color depth, WebGL
Refresh rate is how many times per second the panel can redraw. Color depth is the number of bits used to store each pixel color (24 or 32 bit is standard). WebGL is the browser interface to your graphics processor; the vendor and renderer strings tell you what the driver wants to identify as, not necessarily the exact hardware.
How to test for dead pixels
A dead pixel is a pixel that stays off (looks black) or stuck on a single color across every scene. Fill the screen with solid colors in turn (black, white, red, green, blue, gray) and look for pixels that stand out from the field.
Why some hardware information is hidden
Browsers deliberately withhold precise hardware details (exact GPU model, exact monitor model, serial numbers) to reduce fingerprinting. This tool respects those limits; nothing here bypasses them.
Device information is read locally in your browser. Nothing is uploaded.
AIExplain my display