diff options
author | gnarf <gnarf@gnarf.net> | 2011-05-12 10:22:49 -0500 |
---|---|---|
committer | gnarf <gnarf@gnarf.net> | 2011-05-12 10:22:49 -0500 |
commit | e4204b129dc2ae4b8fe865b2c9cb381bb97de3eb (patch) | |
tree | 14a733d050dd64ffe4a87010deabaa5ab9094b39 /tests/unit/effects/effects.html | |
parent | 783f134aaa333b9e8795c701d8fd741de387cb0e (diff) | |
download | jquery-ui-e4204b129dc2ae4b8fe865b2c9cb381bb97de3eb.tar.gz jquery-ui-e4204b129dc2ae4b8fe865b2c9cb381bb97de3eb.zip |
Unit Tests: effects: adding some animateClass tests
Diffstat (limited to 'tests/unit/effects/effects.html')
-rw-r--r-- | tests/unit/effects/effects.html | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/tests/unit/effects/effects.html b/tests/unit/effects/effects.html index 2cffda7ec..0879a98b2 100644 --- a/tests/unit/effects/effects.html +++ b/tests/unit/effects/effects.html @@ -35,6 +35,22 @@ .hidden { display: none; } + .test { + background: #000; + border: 0; + } + .testAddBorder { + border: 10px solid #000; + } + .testChangeBackground { + background: #fff; + } + .test h2 { + font-size: 10px; + } + .testChildren h2 { + font-size: 20px; + } </style> </head> <body> @@ -48,7 +64,9 @@ <div id="qunit-fixture"> <div class="hidden test"></div> - <div class="shown test"></div> + <div class="animateClass test"> + <h2>Child Element Test</h2> + </div> </div> </body> |