From 88fc523c59465b28633de91f4c9e87b8364064b7 Mon Sep 17 00:00:00 2001 From: jeresig Date: Mon, 27 Sep 2010 10:28:35 -0400 Subject: [PATCH] Adjust manipulation test to handle whitespace RegExp issue in older WebKits. Fixes #7082. --- test/unit/manipulation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index e1d3dbf..2fc6f18 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -899,7 +899,7 @@ var testHtml = function(valueObj) { equals( div.children().children().length, 1, "Make sure that a grandchild exists." ); var space = jQuery("
").html(valueObj(" "))[0].innerHTML; - ok( /^\s$|^ $/.test( space ), "Make sure entities are passed through correctly." ); + ok( /^\xA0$|^ $/.test( space ), "Make sure entities are passed through correctly." ); equals( jQuery("
").html(valueObj("&"))[0].innerHTML, "&", "Make sure entities are passed through correctly." ); jQuery("#main").html(valueObj("")); -- 1.7.10.4