aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/menu/menu_methods.js
blob: b6ebaf21532c4d58fb241ecd971e7e2a66dc387e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * menu_methods.js
 */
(function($) {

module("menu: methods");

test("destroy", function() {
	var beforeHtml = $("#menu1").find("div").css("font-style", "normal").end().parent().html();
	var afterHtml = $("#menu1").menu().menu("destroy").parent().html();
	// Opera 9 outputs role="" instead of removing the attribute like everyone else
	if ($.browser.opera) {
		afterHtml = afterHtml.replace(/ role=""/g, "");
	}
	equal( afterHtml, beforeHtml );
});


})(jQuery);