Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(color-contrast): correctly calculate background color of text nodes with different size than their container #3703

Merged
merged 40 commits into from
Dec 8, 2022
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
d94e10e
fix(color-contrast): correctly calculate background color of text nod…
straker Oct 7, 2022
51f2d1a
undo file rename
straker Oct 7, 2022
2b4b5c5
fix test
straker Oct 7, 2022
5189270
remove export
straker Oct 7, 2022
ee9dc00
test name
straker Oct 7, 2022
d6fbe0d
comment
straker Oct 7, 2022
5af92cf
merge develop
straker Oct 20, 2022
e5e49a6
undeprecate for this pr
straker Oct 20, 2022
b473b51
tests
straker Oct 21, 2022
2d07ab0
Merge branch 'develop' into color-contrast-text-rects
straker Oct 21, 2022
8b4a242
fix test
straker Oct 21, 2022
9c79ddb
fix firefox test
straker Oct 24, 2022
647447f
fix bug
straker Oct 24, 2022
717d5f7
firefox...
straker Oct 24, 2022
3c75348
firefox ci is annoying
straker Oct 24, 2022
46e5073
Merge branch 'develop' into color-contrast-text-rects
straker Nov 2, 2022
90b88b2
fix test?
straker Nov 2, 2022
e6db4ec
new lint
straker Nov 2, 2022
8814049
sigh...
straker Nov 2, 2022
1f3eefd
:P
straker Nov 2, 2022
bd623a2
:P
straker Nov 2, 2022
90effe0
works now?
straker Nov 2, 2022
4347550
Update lib/commons/color/get-background-color.js
straker Nov 8, 2022
f95a15d
Update lib/commons/color/get-background-color.js
straker Nov 8, 2022
0e18a8f
Update lib/commons/math/get-intersection-rect.js
straker Nov 8, 2022
6ead726
Update lib/commons/math/get-intersection-rect.js
straker Nov 8, 2022
d928c67
Update lib/commons/math/get-intersection-rect.js
straker Nov 8, 2022
a44d62f
Merge branch 'develop' into color-contrast-text-rects
straker Nov 21, 2022
c7d2720
changes
straker Nov 21, 2022
c20d0dc
Update lib/commons/color/get-background-stack.js
straker Nov 29, 2022
2b00d57
Update lib/commons/color/get-background-color.js
straker Nov 29, 2022
0ba9fdd
Update lib/commons/dom/get-visible-text-rects.js
straker Nov 29, 2022
82308bd
Merge branch 'develop' into color-contrast-text-rects
straker Dec 6, 2022
17bf2d0
Merge branch 'color-contrast-text-rects' of https://github.com/dequel…
straker Dec 6, 2022
871a7c9
changes
straker Dec 6, 2022
652866a
:robot: Automated formatting fixes
straker Dec 6, 2022
a58b620
Merge branch 'develop' into color-contrast-text-rects
straker Dec 6, 2022
a49adbb
suggestions
straker Dec 7, 2022
dc8656b
suggestions
straker Dec 8, 2022
de4c3ef
rename
straker Dec 8, 2022
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
Prev Previous commit
Next Next commit
sigh...
  • Loading branch information
straker committed Nov 2, 2022
commit 8814049bb9792f5cff3d5f02b810b05cc146823e
3 changes: 2 additions & 1 deletion test/integration/full/incomplete/color-contrast.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</script>
</head>
<body>
<div id="fixture" style="width: 100%; position: relative; top: 50px">
<div id="fixture" style="width: 100%; position: relative">
<div
id="parent"
style="
Expand Down Expand Up @@ -84,6 +84,7 @@
</div>

<div id="mocha"></div>
<script src="/test/integration/no-ui-reporter.js"></script>
<script src="/test/testutils.js"></script>
<script src="color-contrast.js"></script>
<script src="/test/integration/adapter.js"></script>
Expand Down