-
Notifications
You must be signed in to change notification settings - Fork 20.6k
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
Rely on documentMode for most IE workarounds? #4386
Comments
I'm in favor of this. It works specifically because we're supporting a known-dead-end environment, and we can put all of the old logic back in with a new release if it is ever forked or revived. |
👍 Great idea! Getting rid of the features that force layout would be especially good. A |
To make sure none of the IE-targeted workarounds depends on IE bugs we also have a new special test run on Chrome Headless with document.documentMode set to 11 to force all those workarounds to be applied in Chrome & make sure tests still pass. Fixes jquerygh-4386
Since there's some interest in this, I submitted #4387 for easier targeted review. |
To make sure none of the IE-targeted workarounds depends on IE bugs we also have a new special test run on Chrome Headless with document.documentMode set to 11 to force all those workarounds to be applied in Chrome & make sure tests still pass. Fixes jquerygh-4386
To make sure none of the IE-targeted workarounds depends on IE bugs we also have a new special test run on Chrome Headless with document.documentMode set to 11 to force all those workarounds to be applied in Chrome & make sure tests still pass. Fixes jquerygh-4386
To make sure none of the IE-targeted workarounds depends on IE bugs we also have a new special test run on Chrome Headless with document.documentMode set to 11 to force all those workarounds to be applied in Chrome & make sure tests still pass. Fixes jquerygh-4386
Also, update some tests to IE-sniff when deciding whether to skip a test. Fixes jquerygh-4386
Also, update some tests to IE-sniff when deciding whether to skip a test. Fixes jquerygh-4386
Description
With jQuery 4.0 dropping support for lots of legacy browsers, currently (on
master
) all of our support tests only fail in IE. This is not a surprise as IE 11 is the only browser we support that's not getting updates. I'd like to consider relying ondocument.documentMode
to detect IE in such cases.First versions of jQuery relied on user agent parsing for applying workarounds. Later, that was changed to rely on support tests. What problems did the original approach have?
Let's address those points one by one:
documentMode
checks that any Trident-based browser with removeddocumentMode
would face lots of troubles anyway. Also, we don't have to support such browsers apart from IE. Plus, with Trident being closed source forks can't freely edit the engine for their needs as they can do with e.g. Chromium.documentMode
check is not a user-agent check. Parsing user agent strings is inherently fragile, here we'd just check for thuthiness ofdocument.documentMode
. Any IE update removingdocumentMode
would break lots of code in IE already.document.documentMode
set to11
.I'd like to note that historically we haven't relied on support tests fully. In some cases we lumped a few issues under a single support test that didn't carefully check them all. I'd have to look a bit more for specific links to discussions, though.
What would be the gains of relying on
documentMode
?boxSizingReliable
test that requires a layout. This may matter for cheap mobile devices with limited power (see the analysis of parsing time in an old TJ VanToll's article.documentMode
to detect IE is used in AngularJS/Angular, Ember, React & many others. We wouldn't be alone in this.To make it clear, here is what I do NOT propose:
documentMode
check for workarounds that would break if IE fixed the issue (which we'd verify by a special Chrome Headless run).As an experiment, I did the proposed rewrite on a branch (see the latest commit). It also has the proposed special Chrome Headless run set up. Initially, it failed one test in this "fake IE" mode - the SVG dimensions one. This is because the workaround depends on
offsetWidth
/offsetHeight
which are only available in IE. This shows, though, that the workaround already depends on the browser with the bug being IE. I added a separate check to skip the workaround ifoffset*
properties are not supported on SVGs which makes the tests pass.What do you think?
Link to test case
N/A
The text was updated successfully, but these errors were encountered: