Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fixes #11635, Explicit overflow:auto is overridden by inline overflow…
…:hidden during animation, closes gh-981
- Loading branch information
1 parent
69ce829
commit 861476eb3fb5e378fdbb4e86e4737daf6de27f13
Showing
4 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
Submodule sizzle
updated
3 files
+74 −96 | sizzle.js | |
+8 −43 | test/unit/selector.js | |
+1 −44 | test/unit/utilities.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,23 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr" id="html"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<style> | ||
* { | ||
-webkit-box-sizing: border-box; | ||
-moz-box-sizing: border-box; | ||
box-sizing: border-box; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div> | ||
<script src="../../../dist/jquery.js"></script> | ||
</div> | ||
<script> | ||
jQuery(function() { | ||
window.parent.iframeCallback( jQuery.support.shrinkWrapBlocks ); | ||
}); | ||
</script> | ||
</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