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: visibility issue with parent absolute #29689

Merged
merged 43 commits into from
Dec 2, 2024
Merged
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
d2ffbec
fix 28638
senpl Jun 17, 2024
46e07c0
fix changelog
senpl Jun 17, 2024
72b37f6
changelog update as required by pipeline
senpl Jun 17, 2024
1366587
pipeline changelog fix2
senpl Jun 17, 2024
a7d3b83
Merge branch 'develop' into issue-28638-parentAbsolute
jennifer-shehane Jun 21, 2024
9494a26
Merge branch 'develop' into issue-28638-parentAbsolute
senpl Jun 27, 2024
43e3b62
changelog for pipeline
senpl Jun 27, 2024
d206d96
test fixes
senpl Jun 27, 2024
a5e7b11
fix only for firefox. coz in firefox position relative not detected a…
senpl Jun 27, 2024
e4eaa52
Merge branch 'develop' into issue-28638-parentAbsolute
senpl Jun 28, 2024
c5548ee
Merge branch 'develop' into issue-28638-parentAbsolute
senpl Jul 1, 2024
b7aba89
fix to go back to previous extra spaces
senpl Jul 2, 2024
d8a11d1
Merge branch 'issue-28638-parentAbsolute' of https://github.com/senpl…
senpl Jul 2, 2024
53aeba9
Merge branch 'develop' into issue-28638-parentAbsolute
senpl Jul 2, 2024
9749a4d
fix pipeline
senpl Jul 2, 2024
95db079
changelog new
senpl Jul 2, 2024
d1c658f
changelog cleanup
senpl Jul 2, 2024
ca8da1b
pipeline tests fix
senpl Jul 2, 2024
bb57298
Merge branch 'develop' into issue-28638-parentAbsolute
senpl Jul 3, 2024
2d1c953
Merge branch 'develop' into issue-28638-parentAbsolute
senpl Jul 8, 2024
6af9ba6
Merge branch 'develop' into issue-28638-parentAbsolute
jennifer-shehane Jul 8, 2024
c34636c
Merge branch 'develop' into issue-28638-parentAbsolute
senpl Jul 11, 2024
90d4f6a
Merge branch 'develop' into issue-28638-parentAbsolute
senpl Jul 12, 2024
de42b7d
Merge branch 'develop' into issue-28638-parentAbsolute
senpl Jul 25, 2024
07f5b2c
Merge branch 'develop' into issue-28638-parentAbsolute
senpl Jul 26, 2024
397b5c1
Merge branch 'develop' into issue-28638-parentAbsolute
senpl Aug 7, 2024
595dc90
Merge branch 'develop' into issue-28638-parentAbsolute
senpl Aug 8, 2024
51e9113
Merge branch 'develop' into issue-28638-parentAbsolute
senpl Aug 12, 2024
4b82d6f
Merge branch 'develop' into issue-28638-parentAbsolute
senpl Aug 16, 2024
b1ce61f
Merge branch 'develop' into issue-28638-parentAbsolute
senpl Sep 30, 2024
5f8714a
Merge branch 'release/14.0.0' into issue-28638-parentAbsolute
senpl Oct 28, 2024
2fbc79f
Merge branch 'release/14.0.0' into issue-28638-parentAbsolute
jennifer-shehane Oct 29, 2024
e242703
Merge branch 'release/14.0.0' into issue-28638-parentAbsolute
senpl Oct 30, 2024
9d31e48
changelog fix
senpl Oct 30, 2024
50ab0df
Merge branch 'release/14.0.0' into issue-28638-parentAbsolute
jennifer-shehane Nov 6, 2024
2a0bf4a
updates
mschile Nov 26, 2024
32f8b5d
removing files
mschile Nov 26, 2024
97950dd
Merge branch 'release/14.0.0' into issue-28638-parentAbsolute
mschile Nov 26, 2024
c78d180
update
mschile Nov 26, 2024
be2129a
Update cli/CHANGELOG.md
mschile Dec 2, 2024
8030f25
Merge branch 'release/14.0.0' into issue-28638-parentAbsolute
mschile Dec 2, 2024
056c410
Merge branch 'release/14.0.0' into issue-28638-parentAbsolute
mschile Dec 2, 2024
926a5de
Update CHANGELOG.md
mschile Dec 2, 2024
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
2 changes: 1 addition & 1 deletion packages/driver/cypress/e2e/dom/visibility.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ describe('src/cypress/dom/visibility', () => {
`)

this.$elOutOfParentBoundsAbove = add(`\
<div style='width: 100px; height: 100px; overflow: hidden; position: relative;'>
<div style='width: 100px; height: 100px; overflow: hidden; position: fixed;'>
mschile marked this conversation as resolved.
Show resolved Hide resolved
<span id='elOutOfParentBoundsAbove' style='position: absolute; width: 100px; height: 100px; left: 0px; top: -100px;'>position: absolute, out of bounds above</span>
</div>\
`)
Expand Down