} );
// Selector should be trimmed to avoid leading spaces (trac-14773)
- // Selector should include any valid non-HTML whitespace (trac-3003)
- QUnit.test( "jQuery.fn.load( URL_SELECTOR with non-HTML whitespace(trac-3003) )", function( assert ) {
+ // Selector should include any valid non-HTML whitespace (gh-3003)
+ QUnit.test( "jQuery.fn.load( URL_SELECTOR with non-HTML whitespace(gh-3003) )", function( assert ) {
assert.expect( 1 );
var done = assert.async();
jQuery( "#first" ).load( baseURL + "test3.html #whitespace\\\\xA0 ", function() {
result = jQuery.map( Array( 300000 ), function( v, k ) {
return k;
} );
- assert.equal( result.length, 300000, "Able to map 300000 records without any problems (trac-4320)" );
+ assert.equal( result.length, 300000, "Able to map 300000 records without any problems (gh-4320)" );
} else {
assert.ok( "skip", "Array#flat isn't supported in IE" );
}
} );
}
-QUnit.test( "Do not append px (trac-9548, trac-12990, trac-2792)", function( assert ) {
+QUnit.test( "Do not append px (trac-9548, trac-12990, gh-2792)", function( assert ) {
assert.expect( 4 );
var $div = jQuery( "<div>" ).appendTo( "#qunit-fixture" );
child.appendTo( "#qunit-fixture" );
assert.equal( child.data( "myobj" ), "old data", "Value accessed from data-* attribute" );
- assert.equal( child.data( "foo-42" ), "boosh", "camelCasing does not affect numbers (trac-1751)" );
+ assert.equal( child.data( "foo-42" ), "boosh", "camelCasing does not affect numbers (gh-1751)" );
child.data( "myobj", "replaced" );
assert.equal( child.data( "myobj" ), "replaced", "Original data overwritten" );
this.clock.tick( 10 );
} );
-QUnit.test( "Animation callbacks in order (trac-2292)", function( assert ) {
+QUnit.test( "Animation callbacks in order (gh-2283)", function( assert ) {
assert.expect( 9 );
var done = assert.async(),
assert.equal( jQuery( "#qunit-fixture" ).children().children().children().length, 1, "Make sure nested HTML5 elements can hold children." );
} );
-QUnit.test( "html(String) tag-hyphenated elements (Bug trac-1987)", function( assert ) {
+QUnit.test( "html(String) tag-hyphenated elements (Bug gh-1987)", function( assert ) {
assert.expect( 27 );
var attrbad;
var div = document.createElement( "div" );
- // trac-3279
+ // trac-3729
div.innerHTML = "<div id='foo' xml:test='something'></div>";
assert.deepEqual( jQuery( "[xml\\:test]", div ).get(),
[ div.firstChild ],