PSA: Firefox 145.0b5 did not ship today for Desktop due to a release engineering issue (now fixed). Devedition and Firefox for Android 145.0b5 did ship as they were not affected by this issue. The next Firefox Desktop beta will be 145.0b6 on Friday.
This or That: Dev Edition! 😁
Tabs or spaces?
Swarm or K8s?
Docker Desktop or full CLI life? 😤
We hit up Docker Captain @tobiasfenster with rapid-fire dev dilemmas. His takes might spark a container war. 👀🔥
👇 Watch drop your takes!
#Docker#DevEdition
On last @FirefoxNightly, in @FirefoxDevTools the variable tooltip values are parsed like in the Rules view. It can help you, for example, seeing that a variable is not set, or checking which color is returned by light-dark ⚡️
This should ship in 131 (Beta/DevEdition next week)!
ALT Firefox DevTools rules view focus on a single declaration: `outline-color: var(--page-nav-button-outline)`.
A tooltip is displayed, pointing to the `var()`; it has 2 sections:
- the top one has the following text: `var(--unset, var(--page-nav-button-text-color))`. The `--unset` is struck through and has a gray color, while the second parameter of the var function has syntax highlighting
- below it, a computed value section, with the following: `light-dark(#1514a, #fbfbfe)`. This time, the first param is syntax highlighted, while the second one is struck through, and has a gray color.
Después de proponer paquetes .deb para Firefox Nightly, ahora proponemos paquetes para Firefox DevEdition y Firefox Beta.
«Firefox Developer Edition and Beta: Try out Mozilla’s .deb package!»
hacks.mozilla.org/2023/11/fi…
We recently extended this feature for the following attributes:
aria-activedescendant
aria-controls
aria-describedby
aria-details
aria-errormessage
aria-flowto
aria-labelledby
aria-owns
This will be in Firefox 118 (already in Beta/DevEdition)
Can I "Jump to Id"?
1⃣Firefox links the element referencing the ID attribute to its target element in the same DOM, highlighted with an underline.
2⃣Use Cmd Click or Ctrl Click to jump to the target element with the identifier.
🪩 @FirefoxDevTools
🔗 canidev.tools/jump-to-id/fir…
CSS nesting is enabled in @Firefox 117 (currently Beta/DevEdition) 🎉
Impact on @FirefoxDevTools was quite important, we had to change many things in lot of places!
We took this opportunity to rework how we display grouped rules, so it looks more like the CSS you authored 🙂
ALT Firefox DevTools Inspector rules view, displaying the following nested rule:
```css
body {
& main, & x-does-not-exist {
#sidebar, #this-id-does-not-exist {
@container root (10px < width) {
& span, .this-class-does-not-exist {
font-weight: bold;
}
}
}
}
}
```
Looks like container queries will be enabled in version 110 🎉
You should be able to use them in DevEdition sometimes next week 🙂
bugzilla.mozilla.org/show_bu…
Just released - R3 2022! Get excited for Desktop Testing, New Welcome Screen, Test Stability, Extensionless Test Recording & Execution & more - come explore all the new updates across Telerik Test Studio & Test Studio DevEdition: prgress.co/3LsRrdD#dotNET#Testing
I have switching moment last summer from quite old #iPhone to #SurfaceDuo 1stGen and this is a challenge. Still have other old iPhone for other country sim and for forever (!) #Nokia1020 DevEdition for my vaterland #sim cc @magrom
It seems that the feature is only available to GA releases of browsers, not pre-release versions. For example I see it in Firefox on the release channel but I don't have it on Firefox Beta, DevEdition or Nightly.
Our friends @SpiderMonkeyJS implemented the Error cause proposal in Firefox 91* (github.com/tc39/proposal-err…)
The WebConsole displays this new cause property in error messages (and yes, you can have a chain of Error causes 🙂)
* 91 will be Beta/DevEdition later this week
ALT screenshot of Firefox WebConsole, with a snippet throwing a new Error with a cause property. The resulting error message in the console shows the Error and another line below starting with "Caused by:" and then the error that was passed as the cause