diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2014-02-05 15:57:11 +0100 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2014-02-05 15:57:11 +0100 |
commit | 79f59c2144c1ce293454dca21d01819bdd9f52d9 (patch) | |
tree | a1e91c8c3831e1c7d16b1c3af537dd2adb14bd95 /test/unit/css.js | |
parent | 0fcb0f6826c682c038508caf6d3fb1021d58266f (diff) | |
download | jquery-79f59c2144c1ce293454dca21d01819bdd9f52d9.tar.gz jquery-79f59c2144c1ce293454dca21d01819bdd9f52d9.zip |
Support: Document box-sizing was unprefixed in Firefox 29
Diffstat (limited to 'test/unit/css.js')
-rw-r--r-- | test/unit/css.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/css.js b/test/unit/css.js index 77a3f72ac..8747ca9dc 100644 --- a/test/unit/css.js +++ b/test/unit/css.js @@ -789,7 +789,7 @@ test("Do not append px (#9548, #12990)", function() { test("css('width') and css('height') should respect box-sizing, see #11004", function() { expect( 4 ); - // Support: Firefox, Android 2.3 (Prefixed box-sizing versions). + // Support: Firefox<29, Android 2.3 (Prefixed box-sizing versions). var el_dis = jQuery("<div style='width:300px;height:300px;margin:2px;padding:2px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;'>test</div>"), el = el_dis.clone().appendTo("#qunit-fixture"); |