Adapt the nbsp entity test for Opera (output isn't as important as the fact that it's getting converted.
This commit is contained in:
parent
a6f3757d50
commit
053af95294
|
@ -883,7 +883,8 @@ var testHtml = function(valueObj) {
|
||||||
equals( div.children().length, 2, "Make sure two child nodes exist." );
|
equals( div.children().length, 2, "Make sure two child nodes exist." );
|
||||||
equals( div.children().children().length, 1, "Make sure that a grandchild exists." );
|
equals( div.children().children().length, 1, "Make sure that a grandchild exists." );
|
||||||
|
|
||||||
equals( jQuery("<div/>").html(valueObj(" "))[0].innerHTML, " ", "Make sure entities are passed through correctly." );
|
var space = jQuery("<div/>").html(valueObj(" "))[0].innerHTML;
|
||||||
|
ok( /^\s$|^ $/.test( space ), "Make sure entities are passed through correctly." );
|
||||||
equals( jQuery("<div/>").html(valueObj("&"))[0].innerHTML, "&", "Make sure entities are passed through correctly." );
|
equals( jQuery("<div/>").html(valueObj("&"))[0].innerHTML, "&", "Make sure entities are passed through correctly." );
|
||||||
|
|
||||||
jQuery("#main").html(valueObj("<style>.foobar{color:green;}</style>"));
|
jQuery("#main").html(valueObj("<style>.foobar{color:green;}</style>"));
|
||||||
|
|
Loading…
Reference in a new issue