Skip to content

Commit

Permalink
[docs] Fix 301 to chromium (#636)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari authored Sep 18, 2024
1 parent e91f6c4 commit 2c598f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mui-base/src/Slider/Root/SliderRoot.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ describe('<Slider.Root />', () => {
expect(slider).to.have.property('tagName', 'INPUT');
expect(slider).to.have.property('type', 'range');
// Only relevant if we implement `[role="slider"]` with `input[type="range"]`
// We're not setting this by default because it changes horizontal keyboard navigation in WebKit: https://bugs.chromium.org/p/chromium/issues/detail?id=1162640
// We're not setting this by default because it changes horizontal keyboard navigation in WebKit: https://issues.chromium.org/issues/40739626
expect(slider).not.toHaveComputedStyle({ webkitAppearance: 'slider-vertical' });
});

Expand Down

0 comments on commit 2c598f3

Please sign in to comment.