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
10 changes: 10 additions & 0 deletions packages/crud/test/a11y.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ describe('a11y', () => {
await setViewport({ width: 1024, height: 768 });
});

beforeEach(() => {
fixtureSync(`
<style>
:root {
--vaadin-grid-row-border-width: 0px;
Copy link
Contributor Author

@vursen vursen Oct 27, 2025

Choose a reason for hiding this comment

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

There is an issue in the base styles caused by how borders are currently implemented, which causes Grid to incorrectly treat items under the header as visible. This should be addressed separately by refactoring the border implementation: #10331

}
</style>
`);
});

function focusRestorationTests(testId, createFixture) {
describe(`focus restoration - ${testId}`, () => {
let grid, form, dialog, newButton, saveButton, cancelButton, editButtons;
Expand Down
1 change: 1 addition & 0 deletions packages/grid/src/styles/vaadin-grid-base-styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,7 @@ export const gridStyles = css`
text-overflow: ellipsis;
padding: var(--vaadin-grid-cell-padding, var(--vaadin-padding-container));
flex: 1;
min-height: 1lh;
min-width: 0;
}

Expand Down