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

IE/Edge supports hack #196

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
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
19 changes: 19 additions & 0 deletions _data/hacks.json
Original file line number Diff line number Diff line change
Expand Up @@ -1811,6 +1811,25 @@
],
"id": "58baa7f3b74d3e0aaa1d921c4f1bc2d0"
},
{
"type": "supports",
"browsers": {
"ie": {
"version": "*",
"humanVersion": "*",
"legacy": false
}
},
"label": "",
"language": "css",
"code": [
"@supports not (width: max-content) {}"
],
"test": [
"@supports not (width: max-content) { .selector { background: lightgreen; } }"
],
"id": "acc6fd90bd8d5abe12cd0111e82297ca"
},
{
"type": "selector",
"browsers": {
Expand Down
1 change: 1 addition & 0 deletions assets/css/tests.css
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ _:-ms-input-placeholder, :root .run-test .hack_f1070533535a12744a0381a75087a915_
_:-ms-fullscreen, :root .run-test .hack_d19e53a0fdfba5ec0f283ae86175a3af_0 { background: lightgreen; }
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .run-test .hack_28f493d247a12ab654f6c3637f6978d5_0 { background: lightgreen; } }
@media screen { @media (min-width: 0px) { .run-test .hack_448c4b5ec6e62bb3c328cca118f0a80d_0 { background: lightgreen; } } }
@supports not (width: max-content) { .run-test .hack_undefined_0 { background: lightgreen; } }
html:first-child .run-test .hack_54eb761b77f24e4235c7e54927f1be11_0 { background: lightgreen; }
_:-o-prefocus, body:last-child .run-test .hack_a3f166304aafed524566bc6814e1d5c7_0 { background: lightgreen; }
@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) { .run-test .hack_da316470409d77b36c0d01785685f40c_0 { background: lightgreen; } }
Expand Down