-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* SIA R3: add test (#792) * SIA R4: test added (#793) * SIA R5: add test (#794) * R6 test added (#795) * SIA-R8: Added tests (#806) * Add basic tests for R11 (#770) * SIA R12: Add Test (#800) * SIA R17: add test (#791) * R18 add test (#803) * SIA-R19: Add test (#807) * Test for SIA-R20 added * Add tests for R42 * Remove second expectation from R62 (#772) * SIA R62: accept different font weight (#779) * Implement pseudo classes equality (#773) * Add equals() and toString() to functional pseudo-classes and elements * Name computation: skip step 1 when descending (#778) * Accessible name: reject whitespace descendants (#831) * Extended diagnostic for R14 (#786) * R16 extended diagnostic (#804) * R62 extended diagnostic (#801) * Fix background-size (#788) * Support text-decoration-thickness (#817) * Support `font-variant` CSS property (#821) * Assume no background on size (#789) * Fix hasRole to pick the role from the accessible node (#805) * Increase Nodejs heap size (#818) * SIA R65: accept different border as focus indicator (#819) * Implement SIA R56 (#829) Co-authored-by: elenamongelli <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kasper Isager <[email protected]>
- Loading branch information
1 parent
32ca8f3
commit bfb1a0d
Showing
124 changed files
with
4,559 additions
and
731 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,9 +11,11 @@ jobs: | |
name: Build | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest] | ||
os: [ ubuntu-latest, windows-latest ] | ||
node: [12, 14] | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
NODE_OPTIONS: "--max-old-space-size=4096" | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export function normalize(input: string): string { | ||
return input.trim().toLowerCase().replace(/\s+/g, " "); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.