ScreenToolsScreen.tools

Is this online monitor test utility compatible with iPhone, Android, and Windows 11?

Short answer

Yes — every tool is pure web (HTML, Canvas, Web Audio, no plugins) and runs on every current browser. The only meaningful platform-specific limitation is that Mobile Safari blocks programmatic fullscreen API; iOS users work around this by adding the page to their Home Screen, which launches the tool in standalone mode without browser chrome.

Updated 2026-06-25

Cross-platform compatibility for browser-based tools comes down to which web APIs each browser exposes and how strictly it enforces them. The interesting story for screen-test tools is less "does it work" and more "which APIs are exposed where" — because tools that look identical on paper behave subtly differently across the three major browser engines.

Three browser engines, one web

In 2026 there are still really only three browser rendering engines, regardless of how many browser brands ship:

  • Blink (Chrome, Edge, Brave, Opera, Vivaldi, Samsung Internet, Arc, all Android browsers, etc.)
  • Gecko (Firefox, Tor Browser)
  • WebKit (Safari on macOS and iOS; before March 2024, the *only* engine allowed on iOS)

The EU's Digital Markets Act forced Apple to allow third-party engines on iOS starting in March 2024. As of 2026, Chrome, Firefox, and Edge on iOS in EU regions run their native engines (Blink, Gecko, Blink). Outside the EU, iOS browsers still all use WebKit under the hood.

For our purposes, this matters because Mobile Safari's fullscreen restrictions are an iOS WebKit policy, not a general web standard. The same Chrome on Android allows true HTML5 fullscreen. The same Chrome on iPad in EU mode allows true fullscreen.

What works everywhere, what doesn't

Screen-test tools use a small set of web APIs. Here's the support reality:

APIChrome/EdgeFirefoxiOS SafariAndroid WebView
Canvas 2D
CSS Container Queries✓ (88+)✓ (110+)✓ (16+)
Fullscreen API⚠ iPhone only blocks; iPad allows
Web Audio API⚠ Requires user gesture to start
MediaDevices (camera/mic)✓ (HTTPS only)
Web Share API✓ (mobile)✓ (mobile)

The two ⚠ flags are real and predictable:

Mobile Safari fullscreen — iPhone Safari does not implement the Element.requestFullscreen() API. It exists in iPad Safari (post-iPadOS 17) and in Chrome iOS in EU mode, but not on iPhone in Safari. The workaround is Add to Home Screen, which launches the page in standalone mode with no Safari chrome — visually identical to fullscreen for our purposes.

Web Audio gesture requirement — every browser on every platform requires audio playback to be triggered by a user action (click, tap, key press). The first time you press "Play" on an ambient sound tool, the AudioContext resumes from suspended state. Subsequent navigation within the same tab does not re-require the gesture.

The PWA escape hatch

Every tool on this site is technically a Progressive Web App — a regular website that supports being installed to the home screen on mobile and to the dock on desktop. The benefits of installation:

  • iOS: full-bleed standalone mode (no Safari URL bar/toolbar) — effectively true fullscreen
  • Android: launches like a native app, with its own taskbar entry
  • macOS: appears in Launchpad with its own icon and dock entry
  • Windows 11: appears in Start Menu, can be pinned to taskbar
  • ChromeOS: same as Android plus desktop launcher integration

The procedure varies slightly: - iOS Safari: Share button → "Add to Home Screen" - Chrome Android: three-dot menu → "Install app" - Chrome desktop: install icon in the URL bar (right side) - Edge desktop: same install icon

After install, the tools open in their own window and remember your last-used configuration across launches.

Why this matters less than people think

The compatibility table above looks daunting, but for monitor-test tools specifically, the failures are all benign. A dead-pixel test that "fails" to take you to true fullscreen on iPhone Safari still displays the test pattern — you just have a thin Safari header that you can dismiss by adding to Home Screen. A Web Audio tool that "requires a gesture" requires one click; not a meaningful limitation for a tool you started by clicking.

The actual hardware running the tools — your panel — is platform-independent. A stuck pixel on a Windows 11 laptop is the same pixel-level defect as a stuck pixel on a Mac, behaves the same under color cycling, and reads the same on every operating system. The tool is just the lens; the panel is what you're examining.

For comprehensive testing, the recommendation is always the same: run the test on the device's native display, in its native browser, from a desk and chair where you'll actually use the screen. Cross-platform compatibility is solved; cross-environment validity is the harder question.