atlas news
MDN - Mozilla Developer Network : EN : mastodon
29 april
07h00
Schedule work at the right time with queueMicrotask() âs...
Schedule work at the right time with queueMicrotask() âs Run a callback after the current task but before rendering. More predictable than setTimeout...
28 april
21h00
Format lists like a native speaker
Format lists like a native speaker Intl.ListFormat turns arrays into grammatically correct strings in any locale. Handles "and",...
07h00
Fit images perfectly with object-fit
Fit images perfectly with object-fit Control how replaced content (images, videos) fills its container. cover, contain, fill, scale-down, or none.No...
27 april
21h00
Parse and build query strings the easy way
Parse and build query strings the easy way URLSearchParams gives you a clean API for working with URL parameters. Get, set, append, delete, and...
10h00
Happening tomorrow at Mozilla Berlin s
Happening tomorrow at Mozilla Berlin s Firefox, open source & the future of the web. Firefox Mobile open source contributions Firefox Roadmap...
07h00
Support dark mode with one CSS property
Support dark mode with one CSS property color-scheme tells the browser your page supports light, dark, or both. Form controls, scrollbars, and system...
26 april
21h00
Send messages between browser tabs instantly
Send messages between browser tabs instantly BroadcastChannel lets same-origin tabs, iframes, and workers communicate in real time. Great for syncing...
07h00
Server-render Shadow DOM with declarative syntax
Server-render Shadow DOM with declarative syntax ✠Use <template shadowrootmode "open"> to create shadow roots in HTML. No...
25 april
21h00
Control how web fonts load with font-display
Control how web fonts load with font-display Avoid invisible text (FOIT) or flashes of unstyled text (FOUT) by telling the browser exactly how to...
10h00
Mozilla Meetup is back in Berlin ...
Mozilla Meetup is back in Berlin Apr 28 18:00Firefox, open source & the future of the web. Firefox Mobile open source contributions Firefox...
07h00
Coordinate async tasks with the Web Locks API
Coordinate async tasks with the Web Locks API Prevent race conditions across tabs and workers. Request a named lock, and the browser ensures...
24 april
21h00
Transform iterators without converting to arrays
Transform iterators without converting to arrays Iterator helpers like .map(), .filter(), .take(), and .drop() work lazily on any iterable. Process...
16h53
Help us build the WebAssembly language reference on MDN ...
Help us build the WebAssembly language reference on MDN We're documenting Wasm 1.0 instructions, reference-types, and SIMD, and looking for...
15h00
Firefox 150 is here What's new?
Firefox 150 is here What's new? color-mix() accepts multiple colors New :playing, :paused, :muted media pseudo-classes œ animation-range-start...
07h00
Set operations are native in JavaScript
Set operations are native in JavaScript union(), intersection(), difference(), symmetricDifference() no more manual loops for set math.> const a...
23 april
12h17
RE:
RE: https: social.eqrion.net ryan 116448930933122446Want to help make Wasm more accessible?Come join us âœ
07h00
Responsive values without media queries
Responsive values without media queries clamp() sets a minimum, preferred, and maximum value in one function. Perfect for fluid typography and...
22 april
21h00
Transform key-value pairs back into objects
Transform key-value pairs back into objects Object.fromEntries() is the inverse of Object.entries(). Convert Maps, arrays, or URLSearchParams...
07h00
Use gap in flexbox, no more margin hacks
Use gap in flexbox, no more margin hacks The gap property works in flexbox, grid, and multi-column layouts. Set consistent spacing between items...
21 april
21h00
Read and build form data with the FormData API
Read and build form data with the FormData API Construct form submissions programmatically, including file uploads. Works with fetch() for modern...