Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Update sizzle; Add sizzle cache collision iframe test. Fixes #8539.
- Loading branch information
Showing
4 changed files
with
91 additions
and
42 deletions.
There are no files selected for viewing
Submodule sizzle
updated
2 files
+17 −13 | sizzle.js | |
+1 −1 | test/unit/selector.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-type" content="text/html; charset=utf-8"> | ||
<title>jQuery selector - sizzle cache</title> | ||
|
||
<script src="http://code.jquery.com/jquery-git.js"></script> | ||
<script> | ||
var $git = jQuery.noConflict(true); | ||
</script> | ||
<script src="../../../src/core.js"></script> | ||
<script src="../../../src/callbacks.js"></script> | ||
<script src="../../../src/deferred.js"></script> | ||
<script src="../../../src/support.js"></script> | ||
<script src="../../../src/data.js"></script> | ||
<script src="../../../src/queue.js"></script> | ||
<script src="../../../src/attributes.js"></script> | ||
<script src="../../../src/event.js"></script> | ||
<script src="../../../src/sizzle/sizzle.js"></script> | ||
<script src="../../../src/sizzle-jquery.js"></script> | ||
<script src="../../../src/traversing.js"></script> | ||
<script src="../../../src/manipulation.js"></script> | ||
<script src="../../../src/css.js"></script> | ||
<script src="../../../src/ajax.js"></script> | ||
<script src="../../../src/ajax/jsonp.js"></script> | ||
<script src="../../../src/ajax/script.js"></script> | ||
<script src="../../../src/ajax/xhr.js"></script> | ||
<script src="../../../src/effects.js"></script> | ||
<script src="../../../src/offset.js"></script> | ||
<script src="../../../src/dimensions.js"></script> | ||
|
||
</head> | ||
<body> | ||
|
||
<div class="test"> | ||
<a href="#" id="collision">Worlds collide</a> | ||
</div> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters