]> source.dussan.org Git - jquery-ui.git/commitdiff
normalize margin/padding on test markup to get reliable height results
authorJörn Zaefferer <joern.zaefferer@gmail.com>
Sat, 20 Mar 2010 14:32:06 +0000 (14:32 +0000)
committerJörn Zaefferer <joern.zaefferer@gmail.com>
Sat, 20 Mar 2010 14:32:06 +0000 (14:32 +0000)
tests/unit/accordion/accordion.html
tests/unit/accordion/accordion_options.js

index 70f65013282371b14b67ebee57f486785b05a919..a7142250ec8f816017f9ef2f55064369a6622147 100644 (file)
@@ -25,6 +25,8 @@
        
        <style>
                #main { font-size: 10pt; font-family: 'trebuchet ms', verdana, arial; }
+               #main h2 { margin: 0; }
+               #main ul, #main li { padding: 0; }
        </style>
 </head>
 <body>
index 237ff40d36557828764855528779cdaabdf9c3be..0782b4bb71bbcf5b0ea72771ee0a953d8df73b54 100644 (file)
@@ -116,9 +116,9 @@ test("{ fillSpace: false }, default", function() {
 test("{ fillSpace: true }", function() {
        $("#navigationWrapper").height(500);
        $('#navigation').accordion({ fillSpace: true });
-       equals( $('#navigation > li:eq(0) > ul').height(), 281 );
-       equals( $('#navigation > li:eq(1) > ul').height(), 281 );
-       equals( $('#navigation > li:eq(2) > ul').height(), 281 );
+       equals( $('#navigation > li:eq(0) > ul').height(), 362 );
+       equals( $('#navigation > li:eq(1) > ul').height(), 362 );
+       equals( $('#navigation > li:eq(2) > ul').height(), 362 );
 });
 
 test("{ header: '> li > :first-child,> :not(li):even' }, default", function() {