Skip to content

Commit 1bbef71

Browse files
Minor typos correction and fixing broken links on the WAI website (#2336)
1 parent 794ed26 commit 1bbef71

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

_rules/css-restrict-orientation-b33eff.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Orientation of the page is not restricted using CSS transforms
44
rules_format: 1.1
55
rule_type: atomic
66
description: |
7-
This rule checks that page content is not restricted to either `landscape` or `portrait` orientation using CSS transforms
7+
This rule checks that page content is not restricted to either `landscape` or `portrait` orientation using CSS transforms.
88
accessibility_requirements:
99
wcag21:1.3.4: # Orientation
1010
forConformance: true
@@ -198,7 +198,7 @@ A page where CSS [transform](https://www.w3.org/TR/css-transforms/#propdef-trans
198198

199199
#### Failed Example 3
200200

201-
This page appears rotated at a slight angle of 2.5 degrees for stylistic purposes, but is locked in portrait orientation by applying a 92.5 degree rotation when in landscape orientation:
201+
This page appears rotated at a slight angle of 2.5 degrees for stylistic purposes, but is locked in `portrait` orientation by applying a 92.5 degree rotation when in `landscape` orientation:
202202

203203
```html
204204
<html lang="en">
@@ -300,7 +300,7 @@ A page where CSS [transform](https://www.w3.org/TR/css-transforms/#propdef-trans
300300
<head>
301301
<title>Page with some content</title>
302302
<style>
303-
@media (orientation: lanscape) {
303+
@media (orientation: landscape) {
304304
body {
305305
transform: rotateZ(0, 0, 1, 270deg);
306306
}

pages/glossary/outcome.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ A conclusion that comes from evaluating an ACT Rule on a [test subject][] or one
1717

1818
When there are no test targets the rule has one `inapplicable` outcome. If the tester is unable to determine whether there are test targets there will be one `cantTell` outcome. And when no evaluation has occurred the test target has one untested outcome. This means that each [test subject][] always has one or more outcomes.
1919

20-
Outcomes used in ACT Rules can be expressed using the [outcome property][] of the [[EARL10-Schema]][].
20+
Outcomes used in ACT Rules can be expressed using the [outcome property][] of the [EARL10-Schema][earl10-schema].
2121

2222
[test subject]: https://www.w3.org/TR/act-rules-format-1.1/#test-subject
2323
[test target]: https://www.w3.org/TR/act-rules-format/#test-target

0 commit comments

Comments
 (0)