Fix #13543. offsetWidth is wrong on non-1 zoom. Close gh-1218.

This commit is contained in:
Michał Gołębiowski
2013-03-04 05:20:25 +01:00
committed by Dave Methvin
parent 01fcdba208
commit df7847bc25
5 changed files with 54 additions and 23 deletions

View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body {
zoom: 0.87;
}
</style>
</head>
<body>
<script src="../../jquery.js"></script>
<script>
jQuery(function() {
window.parent.iframeCallback( jQuery.support.boxSizing );
});
</script>
</body>
</html>