From dca7681284731053124e6437c5bec58e030cc91d Mon Sep 17 00:00:00 2001 From: Michał Gołębiowski Date: Thu, 4 Apr 2013 22:04:39 +0200 Subject: Improve CSS and `Support:` comments. Close gh-1220. 1) corrected box-sizing rules order - the unprefixed value should always be the last one 2) removed last semi-colons in CSS rules 3) updated support comments code review changes + more consistent comment spacing --- test/unit/dimensions.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/unit/dimensions.js') diff --git a/test/unit/dimensions.js b/test/unit/dimensions.js index bcb7b7f2c..c7d1281f2 100644 --- a/test/unit/dimensions.js +++ b/test/unit/dimensions.js @@ -407,7 +407,8 @@ test( "getters on non elements should return null", function() { test("setters with and without box-sizing:border-box", function(){ expect(20); - var el_bb = jQuery("
test
").appendTo("#qunit-fixture"), + // Support: Firefox, Android 2.3 (Prefixed box-sizing versions). + var el_bb = jQuery("
test
").appendTo("#qunit-fixture"), el = jQuery("
test
").appendTo("#qunit-fixture"), expected = 100; -- cgit v1.2.3