diff options
author | Christophe Tafani-Dereeper <christophetd@hotmail.fr> | 2016-05-16 14:44:45 +0200 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2016-05-16 10:46:47 -0400 |
commit | 69db408d82202f11cdc999b2c6b924c189841ea3 (patch) | |
tree | 9db57b564d477235bce0d686eb045f8843f58185 /test | |
parent | 95c7ab68970ce201a2bbff48c8e951d38c228ce8 (diff) | |
download | jquery-69db408d82202f11cdc999b2c6b924c189841ea3.tar.gz jquery-69db408d82202f11cdc999b2c6b924c189841ea3.zip |
CSS: Remove units from a 0 width/height element
Close gh-3122
Diffstat (limited to 'test')
-rw-r--r-- | test/data/testsuite.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/data/testsuite.css b/test/data/testsuite.css index 4f2b289f4..f6225df30 100644 --- a/test/data/testsuite.css +++ b/test/data/testsuite.css @@ -53,11 +53,11 @@ div.medopacity { } div.nowidth { - width: 0px; + width: 0; } div.noheight { - height: 0px; + height: 0; } div.noopacity { |