Skip to content

Commit 55b9f7b

Browse files
committed
Fix content issues
1 parent 6d36361 commit 55b9f7b

File tree

13 files changed

+15
-18
lines changed

13 files changed

+15
-18
lines changed

.vscode/dictionaries/code-entities.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ associationlistitemvalue
6262
attributionsrc
6363
audiocontext
6464
authorid
65+
autospace
6566
backdrag
6667
backgroundfetchabort
6768
backgroundfetchclick
@@ -734,7 +735,6 @@ telu
734735
testingbot-api
735736
texlive
736737
texlive-fontsextra
737-
text-autospace
738738
textformatupdate
739739
textupdate
740740
TEXTUREI

.vscode/dictionaries/terms-abbreviations.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -469,6 +469,7 @@ overlines
469469
overscript
470470
overscripts
471471
overscrolling
472+
overtype
472473
packetization
473474
packetizer
474475
packetizing
@@ -675,6 +676,7 @@ spinlocks
675676
spoofable
676677
spritesheet
677678
spritesheets
679+
squircle
678680
SSML
679681
ssthresh
680682
STIX

files/en-us/learn_web_development/core/scripting/house_data_ui/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ Inside the function body, write code that does the following:
174174
> You _could_ just hardcode the `<option>` elements inside the HTML, but that would only work for this exact data set. We want you to write JavaScript that will correctly populate the form regardless of the data values provided (each house object would have to have the same structure).
175175
176176
> [!NOTE]
177-
> You could use the `innerHTML` property to add child content inside HTML elements, but we'd recommend not doing so. You can't always trust the data you are adding to your page: If it is not properly sanitised on the server, bad actors could use `innerHTML` as a pathway to carry out [Cross-site scripting (XSS)](/en-US/docs/Web/Security/Attacks/XSS) attacks on your page. A safer route is to use DOM scripting features such as `createElement()`, `appendChild()`, and `textContent`. Using `innerHTML` to remove child content isn't such an issue.
177+
> You could use the `innerHTML` property to add child content inside HTML elements, but we'd recommend not doing so. You can't always trust the data you are adding to your page: If it is not properly sanitized on the server, bad actors could use `innerHTML` as a pathway to carry out [Cross-site scripting (XSS)](/en-US/docs/Web/Security/Attacks/XSS) attacks on your page. A safer route is to use DOM scripting features such as `createElement()`, `appendChild()`, and `textContent`. Using `innerHTML` to remove child content isn't such an issue.
178178
179179
### Completing the `renderHouses()` function
180180

Binary file not shown.
Binary file not shown.

files/en-us/web/api/htmlformelement/elements/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ The first form is full, with four form controls: one {{htmlelement("fieldset")}}
7777
<legend>This is a legend</legend>
7878
<label>A form control: <input form="sparseForm" /></label>
7979
<label>Another form control: <input form="sparseForm" /></label>
80-
<label>Yest anotehr form control: <input form="sparseForm" /></label>
80+
<label>Yest another form control: <input form="sparseForm" /></label>
8181
</fieldset>
8282
</form>
8383

files/en-us/web/css/caret-shape/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,12 @@ span {
188188
}
189189

190190
@keyframes old-caret {
191-
from,
191+
0%,
192192
50% {
193193
caret-color: #00ad00;
194194
}
195195
75%,
196-
to {
196+
100% {
197197
caret-color: transparent;
198198
}
199199
}

files/en-us/web/css/caret/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,12 +197,12 @@ span {
197197
}
198198

199199
@keyframes vintage-caret {
200-
from,
200+
0%,
201201
50% {
202202
caret-color: #00ad00;
203203
}
204204
75%,
205-
to {
205+
100% {
206206
caret-color: transparent;
207207
}
208208
}

files/en-us/web/css/corner-shape/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ div {
254254
}
255255

256256
div:hover {
257-
background-color: rgb(255 255 255 / 1);
257+
background-color: white;
258258
}
259259
```
260260

@@ -531,7 +531,7 @@ div {
531531
```
532532

533533
```css live-sample___corner-shape-animation
534-
@keyframes cornerpulse {
534+
@keyframes corner-pulse {
535535
from {
536536
corner-shape: square;
537537
}
@@ -543,7 +543,7 @@ div {
543543

544544
html:hover div,
545545
div:focus {
546-
animation: cornerpulse infinite alternate 2s linear;
546+
animation: corner-pulse infinite alternate 2s linear;
547547
}
548548
```
549549

files/en-us/web/css/css_values_and_units/css_value_functions/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ The {{CSSxRef("&lt;basic-shape&gt;")}} CSS [data type](/en-US/docs/Web/CSS/CSS_V
279279
- {{CSSxRef("ray", "ray()")}}
280280
- : Valid with {{cssxref("offset-path")}}; defines the line segment an animated element can follow.
281281
- {{CSSxRef("superellipse()")}}
282-
- : Defines the curvature of an ellipse; can be used to specify a {{cssxref("corner-shape-value")}}, which is used with {{cssxref("corner-shape")}} and its [constituent](/en-US/docs/Web/CSS/corner-shape#constituent_properties) and [related](/en-US/docs/Web/CSS/corner-shape#related_properties) properties.
282+
- : Defines the curvature of an ellipse; can be used to specify a {{cssxref("corner-shape-value")}}, which is used with {{cssxref("corner-shape")}} and its [constituent](/en-US/docs/Web/CSS/corner-shape#constituent_properties) and [related](/en-US/docs/Web/CSS/corner-shape#properties_that_follow_the_corner_shape) properties.
283283

284284
## Reference functions
285285

0 commit comments

Comments
 (0)