mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Merge pull request #679 from rwldrn/fix-ws
Fix whitespace mismatch introduced in bf7a4df22a
This commit is contained in:
commit
a8dd45547c
@ -24,7 +24,7 @@ var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figca
|
||||
rhtml = /<|&#?\w+;/,
|
||||
rnoInnerhtml = /<(?:script|style)/i,
|
||||
rnocache = /<(?:script|object|embed|option|style)/i,
|
||||
rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"),
|
||||
rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"),
|
||||
// checked="checked" or checked
|
||||
rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
|
||||
rscriptType = /\/(java|ecma)script/i,
|
||||
|
@ -1219,14 +1219,14 @@ test("clone() on XML nodes", function() {
|
||||
}
|
||||
|
||||
test("clone() on local XML nodes with html5 nodename", function() {
|
||||
expect(2);
|
||||
expect(2);
|
||||
|
||||
var $xmlDoc = jQuery( jQuery.parseXML( "<root><meter /></root>" ) ),
|
||||
var $xmlDoc = jQuery( jQuery.parseXML( "<root><meter /></root>" ) ),
|
||||
$meter = $xmlDoc.find( "meter" ).clone();
|
||||
|
||||
equal( $meter[0].nodeName, "meter", "Check if nodeName was not changed due to cloning" );
|
||||
equal( $meter[0].nodeType, 1, "Check if nodeType is not changed due to cloning" );
|
||||
} );
|
||||
equal( $meter[0].nodeName, "meter", "Check if nodeName was not changed due to cloning" );
|
||||
equal( $meter[0].nodeType, 1, "Check if nodeType is not changed due to cloning" );
|
||||
});
|
||||
|
||||
test("html(undefined)", function() {
|
||||
expect(1);
|
||||
|
Loading…
Reference in New Issue
Block a user