There are two main reasons for why some of those dependencies are no longer
needed:
1. `jQuery.contains` which is now a part of `core`.
2. `jQuery.find.attr` no longer exists, native `getAttribute` is used instead.
Closes gh-5383
Ref gh-5379
import { rnothtmlwhite } from "../var/rnothtmlwhite.js";
import { isIE } from "../var/isIE.js";
-import "../selector.js";
-
jQuery.fn.extend( {
attr: function( name, value ) {
return access( this, jQuery.attr, name, value, arguments.length > 1 );
import { access } from "../core/access.js";
import { isIE } from "../var/isIE.js";
-import "../selector.js";
-
var rfocusable = /^(?:input|select|textarea|button)$/i,
rclickable = /^(?:a|area)$/i;
import "./core/init.js";
import "./core/ready.js";
-import "./selector.js"; // contains
var
import "./core/init.js";
import "./traversing.js";
-import "./selector.js";
import "./event.js";
var
import "./core/init.js";
import "./css.js";
-import "./selector.js"; // contains
jQuery.offset = {
setOffset: function( elem, options, i ) {