Most recent checkin to fix an issue with Safari2 broken the CSS Querying Engine for other browsers
Gimme.query is often slow when retrieving elements on a page with a large and complicated DOM structure. This is because Gimme blindly queries backwards and doesn't bother to trim the tree at all....
The two functions: .getScreenPosition and .getPagePosition might be able to be improved by using some proprietary methods from IE and Mozilla. Currently both implementations rely on the rather bug...
Gimme has an extension model, now that Gimme has been updated to use .prototype. This should be leveraged and all "glitzy", fx-related functions should be moved to gimmefx.js, while the core funct...
Desc: Gimme by attribute selector broke during the implementation of ComplexGimme(..) Reason: ComplexGimme(..) splits the selector by \s, ~, + and |. But when spaces exist in an attribute value, ...
The regular expression used to split up complex selectors is not robust enough. Looks like this is going to need to be parsed manually.