我想我在WebKit(或jQuery)中发现了一个错误,其他人可以确认吗?

时间:2009-09-20 02:27:58

标签: jquery safari webkit google-chrome

我相信我在WebKit中发现了一个错误。它涉及jQuery中的outerWidth(true)(我假设是outerHeight(true))。

在Safari和Chrome的每个浏览器中,第三个框是200.在Safari和Chrome中,它(差不多)是我屏幕的宽度。

点击here查看我的搜索结果: inline image not found.
(来源:x3non.com

你可以在这里测试一下:http://ramblingwood.com/sandbox/webkit-bug/test.html

我使用了这个测试文件:

<!DOCTYPE html>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
  <style type="text/css">
    input {
      width: 50%;
      height: 1em;
      font-size: 1em;
    }
 #testBox {margin-left:100px;width:100px;}
 #testBox2 {padding-left:100px;width:100px;}
 #testBox3 {border-left:100px black solid;width:100px;}
  </style>
  <script type="text/javascript">
    function init(){
      $('#w1').val($('#testBox').width());
      $('#ow1').val($('#testBox').outerWidth());
      $('#owt1').val($('#testBox').outerWidth(true));
      $('#w2').val($('#testBox2').width());
      $('#ow2').val($('#testBox2').outerWidth());
      $('#owt2').val($('#testBox2').outerWidth(true));
      $('#w3').val($('#testBox3').width());
      $('#ow3').val($('#testBox3').outerWidth());
      $('#owt3').val($('#testBox3').outerWidth(true));
    }
    $(document).ready(function(){
      init();

      $(window).resize(function(){
        init();
      });
    });
  </script>

</head>
<body>
 <div id="testBox">test</div>
  <p>width() <input type="text" id="w1" /></p>
  <p>outerWidth() <input type="text" id="ow1" /></p>
  <p>outerWidth(true) <input type="text" id="owt1" /></p>

 <div id="testBox2">test2</div>
  <p>width() <input type="text" id="w2" /></p>
  <p>outerWidth() <input type="text" id="ow2" /></p>
  <p>outerWidth(true) <input type="text" id="owt2" /></p>

 <div id="testBox3">test3</div>
  <p>width() <input type="text" id="w3" /></p>
  <p>outerWidth() <input type="text" id="ow3" /></p>
  <p>outerWidth(true) <input type="text" id="owt3" /></p>
</body>
</html>

5 个答案:

答案 0 :(得分:11)

Chrome的DOM检查员确认这是一个WebKit问题;即使您尝试覆盖margin-right,div也会获得较大的右边距。强制正确计算边距的一些因素包括float: leftdisplay: inline-block。此外,如果你将div放在另一个大小的div中,它的outerWidth(true)将给出包含div的innerWidth,这可能是一个有用的实际解决方法 - 只需将它包装在一个带有{的div中{1}}。

答案 1 :(得分:1)

找到外部宽度不是错误。 Webkit实际上将div渲染为具有较大的右边距。由于右边距(几乎)延伸到右边缘,因此外部宽度会更大。

我不确定这是否是呈现它的“正确”方式,但如果有一个规范说明右边距不应该延伸,那么这将是WebKit中的一个错误。

答案 2 :(得分:1)

我的经验也证实了这一点 - 这是一个Webkit错误,需要修复。

答案 3 :(得分:1)

如果您在输入字段中将大小设置为1,则会修复错误 - Chrome和Safari中的testet

答案 4 :(得分:0)

我也可以证实这一点。

Webkit做到这一点真的很奇怪,我无法想象为什么有人会认为这是一个好主意。

我想知道Chrome 4是否解决了这个问题。