Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions _rules/css-restrict-orientation-b33eff.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Orientation of the page is not restricted using CSS transforms
rules_format: 1.1
rule_type: atomic
description: |
This rule checks that page content is not restricted to either `landscape` or `portrait` orientation using CSS transforms
This rule checks that page content is not restricted to either `landscape` or `portrait` orientation using CSS transforms.
accessibility_requirements:
wcag21:1.3.4: # Orientation
forConformance: true
Expand Down Expand Up @@ -198,7 +198,7 @@ A page where CSS [transform](https://www.w3.org/TR/css-transforms/#propdef-trans

#### Failed Example 3

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:
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:

```html
<html lang="en">
Expand Down Expand Up @@ -300,7 +300,7 @@ A page where CSS [transform](https://www.w3.org/TR/css-transforms/#propdef-trans
<head>
<title>Page with some content</title>
<style>
@media (orientation: lanscape) {
@media (orientation: landscape) {
body {
transform: rotateZ(0, 0, 1, 270deg);
}
Expand Down
2 changes: 1 addition & 1 deletion pages/glossary/outcome.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ A conclusion that comes from evaluating an ACT Rule on a [test subject][] or one

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.

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

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