doiuse
doiuse copied to clipboard
Allow outline but deny ouline-offset for IE 11
Unexpected browser feature "outline" is only partially supported by IE 11 (plugin/no-unsupported-browser-features
According to caniuse: http://caniuse.com/#feat=outline
outline
is supported in IE 11, only outline-offset
is not supported.
Is there any way to allow outline
and deny only outline-offset
?
See here: https://github.com/anandthakker/doiuse#ignoring-file-specific-rules
Does ignoring outline
do you what you want? I.e.: /* doiuse-disable outline */
. Also, I have to remind you that issues are not for support requests but for reporting bugs and feature requests. If you have a support request then please use stack overflow.
If you're reporting a bug, please open either a pull request with a failing test demonstrating the problem, or include a link to a repository with a reduced test case demonstrating the problem.
Does ignoring outline do you what you want?
No, because it will ignore outline-offset
then, but I want to warn about it.
issues are not for support requests but for reporting bugs and feature requests
Well, I intended it to be a feature request/bug report, because current behaviour either produces false positives or does not report important issues:
- If
outline
is not disabled, and there isoutline: none
, doiuse warns aboutUnexpected browser feature "outline"
, althoughoutline: none
is completely supported. - If
outline
is disabled, and there isoutline-offset
, doiuse produces no warning, althoughoutline-offset
is not supported in IE11.
Same about appearance
#71.
Well, I intended it to be a feature request/bug report, because current behaviour either produces false positives or does not report important issues
Ok, my apologies I misinterpreted your initial report. So indeed seems related to #71