File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ <h2 id="qunit-userAgent"></h2>
55
55
< div >
56
56
< div id ="list1 " class ="foo ">
57
57
< a class ="bar "> There is one obvious advantage:</ a >
58
- < div style =" font-style: normal; " class ="foo ">
58
+ < div class ="foo ">
59
59
< p >
60
60
You've seen it coming!
61
61
< br />
@@ -65,7 +65,7 @@ <h2 id="qunit-userAgent"></h2>
65
65
</ p >
66
66
</ div >
67
67
< a class ="bar "> Now that you've got...</ a >
68
- < div style =" font-style: normal; " class ="foo ">
68
+ < div class ="foo ">
69
69
< p >
70
70
your bear, you have to admit it!
71
71
< br />
@@ -76,7 +76,7 @@ <h2 id="qunit-userAgent"></h2>
76
76
</ p >
77
77
</ div >
78
78
< a class ="bar "> Rent one bear, ...</ a >
79
- < div style =" font-style: normal; " class ="foo ">
79
+ < div class ="foo ">
80
80
< p >
81
81
get two for three beer.
82
82
</ p >
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ test("init", function() {
31
31
} ) ;
32
32
33
33
test ( "destroy" , function ( ) {
34
- var beforeHtml = $ ( "#list1" ) . parent ( ) . html ( ) ;
34
+ var beforeHtml = $ ( "#list1" ) . find ( "div" ) . css ( "font-style" , "normal" ) . end ( ) . parent ( ) . html ( ) ;
35
35
var afterHtml = $ ( "#list1" ) . accordion ( ) . accordion ( "destroy" ) . parent ( ) . html ( ) ;
36
36
equal ( afterHtml , beforeHtml ) ;
37
37
} ) ;
You can’t perform that action at this time.
0 commit comments