Font Loading API Demo - Online Wait for Fonts Ready
Use the document.fonts API to check if a font is loaded. Watch the ready promise. Avoid FOUT. JavaScript demo.
UD5 Toolkit
Use the document.fonts API to check if a font is loaded. Watch the ready promise. Avoid FOUT. JavaScript demo.
See your current page load broken down into DNS, TLS, request, and DOM phases. Understand where time is spent.
See a comprehensive table of which modern web APIs your current browser supports. Includes WebGPU, AVIF, and more.
Experiment with the Federated Credential Management API. Simulate a sign‑in flow without third‑party cookies. Privacy‑first.
List all resources loaded by the current page and their detailed timing breakdown. In‑browser waterfall.
Select text and see the Selection object properties. Create ranges programmatically. Understand how rich‑text editors work.
Query the permission state of camera, microphone, geolocation, and more. See the response and learn the API.
Check if your related native or PWA app is installed. See the API in action and copy the code.
Request a USB device and communicate with it using the Web USB API. See vendor and product IDs. Experimental.
Request HID devices and list them. Read input reports and send output. For custom hardware and controllers.
Connect to a serial device (Arduino, etc.) via the Web Serial API. Send and receive text. No native app needed.
Pick a contact from the device’s address book (mobile). Read name, email, and phone. All permission‑based. Privacy safe.
Intercept and manage navigations without reloading. Test transition handling and URL updates. The future of client‑side routing.
Use the File System Access API with file handles for persistent read/write. Learn incremental saving patterns.
Test the Content Indexing API to add a page to the device's content feed. See how your PWA integrates with the OS.
Open the same page in two tabs and send messages between them. See real‑time cross‑tab communication. Learn the API.
Select HTTP method, set headers, and body. Send requests and see the full response. Lightweight Postman alternative.
See your current page load broken down into DNS, TLS, request, and DOM phases. Understand where time is spent.
Write to shared storage and run a worklet to process data. Learn the privacy‑preserving alternative to third‑party cookies.
Set media metadata and play/pause controls for the OS media widget. Test action handlers. Perfect for web audio apps.
Use the EyeDropper API to sample a color from anywhere on your screen. Click, select, and copy the hex. No extensions needed.
Schedule tasks with user‑visible, user‑blocking, or background priority. See execution order and delays. Modern web perf.
Test the modern File System Access API. Open a file, modify it, and save back to disk. All sandboxed in browser.
Configure how your PWA launches: focus existing or create new. Test with the launch_handler manifest field.
Test required, pattern, minlength etc. See validity states and custom error messages. Learn browser‑native validation.
Write JavaScript using element.animate() and see the result in a live preview. Compare with CSS keyframes. Debugger included.
Issue and redeem Private State Tokens (formerly Trust Tokens). Understand how they help detect bots without cookies.
Test sharing multiple files (images, PDFs) using the Web Share API. Check if the browser supports file sharing. Demo page.
Open a test video in Picture‑in‑Picture mode. Control entering and leaving PiP. Copy the code snippet for your own app.
Connect to a BLE device and read its Battery Service characteristic. See the charge level in a gauge.
Read the ambient atmospheric pressure in hPa using the Pressure Sensor API (if available). Real‑time graph.
Visualize real‑time linear acceleration (excluding gravity). Watch the 3D vector graph move as you shake the device.
Demonstrate how the Web OTP API automatically reads one‑time codes from SMS (mobile). Simulation with a fake SMS input.
Enumerate all fonts installed on your device and see a real‑time preview. Useful for design tools. Permission required.
Request and release a screen wake lock to keep the device awake. See the lock state in real time. Perfect for recipes or presentations.
Compress and decompress text using the browser's native Compression Streams API. See the binary output size.
Connect a game controller and see every button press, axis movement, and vibration test. Uses the Gamepad API.
Modify the DOM via buttons and see MutationRecords logged. Understand childList, attributes, and subtree options.
Drag to resize a box and see the Resize Observer callback fire. Get contentRect and borderBoxSize. Learn the API.
Toggle a screen wake lock to prevent the device from dimming or sleeping. See the lock state and learn the API.
Test the experimental Translation API to translate text between languages directly in the browser, without cloud calls. Check support and copy the JavaScript starter.
Register a periodic background sync with a minimum interval. See the registration state and tags. Keep content fresh.
Decode an image progressively using the ImageDecoder API. See partial results and metadata. Modern alternative to <img>.
Decode individual video frames from a local file using the VideoDecoder API. Step through frames. Cutting‑edge browser feature.
Register a one‑off background sync and see it fire when connectivity returns. Debug service worker sync logic.
Read, write, and delete cookies using the modern Cookie Store API. Monitor change events. No more document.cookie parsing.
Check notification permission, request it, and send a test notification. Verify icon, body, and tag. Debug web push.
Display your effective connection type (4g, 3g, etc.) and downlink speed using the Navigator API. Adapt your app accordingly.
See your device's battery level, charging status, and discharge time using the Battery Status API. Fun utility.
Check current screen orientation and test the lock API. Useful for mobile web apps. Demo with code.
Unified input demo: see pressure, tilt, and type from any pointer. Compare pointerType values. Essential for drawing apps.
Request permission and detect when the user is idle (away from keyboard). See screen lock state. For native‑like apps.
Connect a gamepad and see all button presses and axis movements visually. Check that every input is detected correctly.
Acquire and release locks across tabs. Prevent race conditions in IndexedDB or localStorage. Visual queue and lock state.
Trigger different vibration patterns on mobile devices. Test if your phone supports haptic feedback. Simple demo.
Enter an API URL and quickly check its HTTP status code and response time. See response headers and body. Browser fetch.
See the View Transitions API in action. Cross‑fade and morph between two states. Copy the JavaScript starter code.
Test the Web Share API by sharing text, links, and files directly from the browser. Check compatibility and see example code.
Pick a method, URL, headers, and body, then send an HTTP request directly from your browser. Debug APIs easily.
Experiment with the Async Clipboard API: read/write text and images from the clipboard. Verify permissions and see demo code.