Skip to content

Commit 5ebca2e

Browse files
mdn-botJosh-Cena
andauthored
fix: auto-cleanup by bot (mdn#42717)
* chore: auto-fix Markdownlint, Prettier, and front-matter issues * Fix more --------- Co-authored-by: Joshua Chen <sidachen2003@gmail.com>
1 parent f1d3159 commit 5ebca2e

File tree

6 files changed

+5
-6
lines changed
  • files/en-us
    • mozilla/firefox/releases/128
    • web
      • css
        • guides/backgrounds_and_borders/using_multiple_backgrounds
        • reference
      • html/reference/elements/input/url
      • javascript/reference/global_objects/undefined

6 files changed

+5
-6
lines changed

files/en-us/mozilla/firefox/releases/128/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This article provides information about the changes in Firefox 128 that affect d
1717
### CSS
1818

1919
- [Relative color syntax](/en-US/docs/Web/CSS/Guides/Colors/Using_relative_colors) is now enabled by default. Relative color syntax allows you to create a color value relative to an origin color, and can allow you to change a color in a different [color space](/en-US/docs/Glossary/Color_space) using [color functions](/en-US/docs/Web/CSS/Guides/Colors#functions) ([Firefox bug 1900251](https://bugzil.la/1900251)).
20-
- The [`content`](/en-US/docs/Web/CSS/Reference/Properties/content) property now supports [alternative text](/en-US/docs/Web/CSS/Reference/Properties/content#alternative_text_string_counter) for content that includes an image. The alternative text is then exposed to the browsers accessibility tree. (See [Firefox bug 1281158](https://bugzil.la/1281158) and [Firefox bug 1896047](https://bugzil.la/1896047)).
20+
- The [`content`](/en-US/docs/Web/CSS/Reference/Properties/content) property now supports [alternative text](/en-US/docs/Web/CSS/Reference/Properties/content#alternative_text_string_counter_attr) for content that includes an image. The alternative text is then exposed to the browsers accessibility tree. (See [Firefox bug 1281158](https://bugzil.la/1281158) and [Firefox bug 1896047](https://bugzil.la/1896047)).
2121
- The [`syntax`](/en-US/docs/Web/CSS/Reference/At-rules/@property/syntax) descriptor of the {{cssxref("@property")}} at-rule now supports the `<string>` syntax component name. (See [Firefox bug 1846635](https://bugzil.la/1846635)).
2222

2323
#### Removals

files/en-us/web/css/guides/backgrounds_and_borders/using_multiple_backgrounds/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ For example:
5555
}
5656
```
5757

58-
5958
This is equivalent to:
6059

6160
```css

files/en-us/web/css/reference/properties/baseline-source/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ body {
8686
}
8787

8888
.box {
89-
border: 2px solid #888 888;
89+
border: 2px solid #888888;
9090
width: 50px;
9191
}
9292

files/en-us/web/css/reference/selectors/_doublecolon_scroll-button/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ ul::scroll-button(right) {
157157
}
158158
```
159159

160-
We don't need to set [alternative text](/en-US/docs/Web/CSS/Reference/Properties/content#alternative_text_string_counter) for the icons on the `content` as the browser takes care of providing appropriate {{glossary("accessible name", "accessible names")}} automatically.
160+
We don't need to set [alternative text](/en-US/docs/Web/CSS/Reference/Properties/content#alternative_text_string_counter_attr) for the icons on the `content` as the browser takes care of providing appropriate {{glossary("accessible name", "accessible names")}} automatically.
161161

162162
#### Result
163163

files/en-us/web/html/reference/elements/input/url/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ The [`title`](/en-US/docs/Web/HTML/Reference/Global_attributes/title) attribute
298298

299299
#### CSS
300300

301-
The CSS gives visual clues to show the user if the content is {{cssxref(":valid")}} or {{cssxref(":invalid")}} by adding an appropriate {{cssxref("content")}} property and includes [alternative text](/en-US/docs/Web/CSS/Reference/Properties/content#alternative_text_string_counter) for users with assistive technologies.
301+
The CSS gives visual clues to show the user if the content is {{cssxref(":valid")}} or {{cssxref(":invalid")}} by adding an appropriate {{cssxref("content")}} property and includes [alternative text](/en-US/docs/Web/CSS/Reference/Properties/content#alternative_text_string_counter_attr) for users with assistive technologies.
302302

303303
```css live-sample___url-validation
304304
input:focus:invalid {

files/en-us/web/javascript/reference/global_objects/undefined/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ if ("x" in window) {
116116
}
117117
```
118118

119-
However, none of the techniques above work if the variable is declared with `let`, `const`, or other lexical declarations. Using `typeof` before the line of declaration still produces a `ReferenceError`, due to the {{jsxref("Statements/let#temporal_dead_zone_tdz", "temporal dead zone (TDZ)")}}.
119+
However, none of the techniques above work if the variable is declared with `let`, `const`, or other lexical declarations. Using `typeof` before the line of declaration still produces a `ReferenceError`, due to the [temporal dead zone (TDZ)](/en-US/docs/Web/JavaScript/Reference/Statements/let#temporal_dead_zone_tdz).
120120

121121
```js example-bad
122122
if (typeof z === "undefined") {

0 commit comments

Comments
 (0)