diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-07-10 18:26:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-10 18:26:45 +0200 |
commit | a288838c6f2ddd08c41e09b4672ad39a03822b04 (patch) | |
tree | 0ab25dbf6516a6562b41eda49868ced8c72869c8 /package.json | |
parent | 87467a6f62b5fbd820ab387836e2a6fb186cbc1b (diff) | |
download | jquery-a288838c6f2ddd08c41e09b4672ad39a03822b04.tar.gz jquery-a288838c6f2ddd08c41e09b4672ad39a03822b04.zip |
CSS: Make the reliableTrDimensions support test work with Bootstrap CSS (3.x version)
Bootstrap 5 includes the following CSS on the page:
```css
*,
*::before,
*::after {
box-sizing: border-box;
}
```
That threw our `reliableTrDimensions` support test off. This change fixes the
support test and adds a unit test ensuring support test values on a page
including Bootstrap 5 CSS are the same as on a page without it.
Fixes gh-5270
Closes gh-5279
Ref gh-5278
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package.json b/package.json index 7483ce02a..7f2fee939 100644 --- a/package.json +++ b/package.json @@ -26,6 +26,7 @@ "devDependencies": { "@babel/core": "7.3.3", "@babel/plugin-transform-for-of": "7.2.0", + "bootstrap": "5.3.0", "colors": "1.4.0", "commitplease": "3.2.0", "core-js": "2.6.5", |