var scriptorder = 0;\r
\r
test("html(String)", function() {\r
- expect(11);\r
+ expect(13);\r
var div = jQuery("#main > div");\r
div.html("<b>test</b>");\r
var pass = true;\r
jQuery("#main select").html("<option>O1</option><option selected='selected'>O2</option><option>O3</option>");\r
equals( jQuery("#main select").val(), "O2", "Selected option correct" );\r
\r
+ var $div = jQuery('<div />');\r
+ equals( $div.html( 5 ).html(), '5', 'Setting a number as html' );\r
+ equals( $div.html( 0 ).html(), '0', 'Setting a zero as html' );\r
+\r
stop();\r
\r
jQuery("#main").html('<script type="text/javascript">ok( true, "jQuery().html().evalScripts() Evals Scripts Twice in Firefox, see #975" );</script>');\r