Michał Gołębiowski-Owczarek
Michał Gołębiowski-Owczarek
### Summary ### ~~This PR is to show what dropping IE support would look like in code. If we make a decision to drop IE in v4, this PR can...
### Description ### This is a followup to gh-4948. In gh-4949, we stopped stringifying attributes which makes setting the `src` attribute on a `script` tag work under trusted types TrustedScriptURL...
### Summary ### Apart from the existing API: ```js function( status, statusText, responses, headers ) {} ``` a new API is now available: ```js function( { status, statusText, responses, headers...
Fixes trac-14394 Ref gh-1385 ### Summary ### ### Checklist ### * [x] All authors have signed the CLA at https://cla.js.foundation/jquery/jquery * [x] New tests have been added to show the...
### Summary In some environments that support the requestAnimationFrame timestamp callback parameter using it results in smoother animations. Fixes gh-3143 Currently it's +35 bytes, most likely due to the `getTimestamp`...
`jQuery.style` & `jQuery.css` are undocumented, do we need to expose them or can we hide them as we plan to do with e.g. `buildFragment` & `domManip`?
Originally reported by ripdog: http://bugs.jquery.com/ticket/15239 The [docs for .position()](http://api.jquery.com/position/) clearly state that they return the "current position of an element relative to the offset parent." - explicitly not the position...
### Description ### Invoking: ```js $( inputNode ) .trigger( "focus" ) .trigger( "blur" ) .trigger( "focus" ); ``` leaves input focused in all browsers except IE. I discovered it while...
### Description ### To be able to reduce selector code size drastically, we should remove custom traversing code from the selector module. That requires dropping positional selectors, though. Originally reported...
We're currently running the Promises/A+ tests only in Node and only on `master`. That mean `compat` is mostly untested and on `master` we don't know if it really works in...