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

chore: add lockfiles to ensure consistent builds in CI #2205

Merged
merged 3 commits into from
Jan 20, 2022

Conversation

web-padawan
Copy link
Member

Description

Connected to https://github.com/vaadin/components-team-tasks/issues/602
Depends on vaadin/magi-cli#158

Type of change

  • Internal change

@CLAassistant
Copy link

CLAassistant commented Jan 14, 2022

CLA assistant check
All committers have signed the CLA.

@tomivirkki tomivirkki force-pushed the chore/package-lock branch 16 times, most recently from 320f31c to db58d83 Compare January 20, 2022 06:05
Comment on lines +218 to +235
// Workaround a ShadyDOM bug
this._reorderGhost.hidden = true;

let cell;
if (Polymer.Settings.useShadow) {
if (this.shadowRoot.elementFromPoint) {
cell = this.shadowRoot.elementFromPoint(x, y);
} else {
cell = document.elementFromPoint(x, y);
}

// Workaround a FF58 bug
this._reorderGhost.hidden = false;

// Workaround FF58/ShadyDOM bugs
while (!cell._column && cell.parentElement) {
if (cell.localName === 'vaadin-grid-cell-content') {
cell = cell.assignedSlot.parentNode;
} else {
cell = cell.parentElement;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I eventually discovered a way to debug the failing tests locally. Turns out the failures were caused by issues in the elementFromPoint polyfill and also due to grid assuming elementFromPoint not being polyfilled at all (which was the case with older ShadyDOM). Phew...

@web-padawan web-padawan merged commit 4ded1cc into master Jan 20, 2022
@web-padawan web-padawan deleted the chore/package-lock branch January 20, 2022 07:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants