]> source.dussan.org Git - jquery.git/commitdiff
Docs: Fix incorrect `trac-NUMBER` references
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>
Wed, 12 Jan 2022 22:23:42 +0000 (23:23 +0100)
committerGitHub <noreply@github.com>
Wed, 12 Jan 2022 22:23:42 +0000 (23:23 +0100)
PR gh-4993 changed a few too many issue references to `trac-NUMBER` ones. This
change fixes them. It also fixes a typo in one Trac issue number in selector
tests.

Ref gh-4993
Closes gh-4995

test/unit/ajax.js
test/unit/core.js
test/unit/css.js
test/unit/data.js
test/unit/effects.js
test/unit/manipulation.js
test/unit/selector.js

index 39fb95be0ddf5c8da2ceb90f9657fcde8e36d9e6..d06ce997505683a8e227ae9cf685fffc596c6f73 100644 (file)
@@ -2770,8 +2770,8 @@ if ( typeof window.ArrayBuffer === "undefined" || typeof new XMLHttpRequest().re
        } );
 
        // 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() {
index fc40dd9520516f69c3629058c60d7b152547cd19..115d3117da5b02d0181d573ff4a445a323074b5d 100644 (file)
@@ -817,7 +817,7 @@ QUnit.test( "jQuery.map", function( assert ) {
                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" );
        }
index 0c1e43dec7fd82c9cb388e34566aa82ad0df3242..1c207e9f0b7338dd5eb9edbb81135617b7660200 100644 (file)
@@ -1182,7 +1182,7 @@ if ( jQuery.fn.offset ) {
        } );
 }
 
-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" );
index 49a3500ac330ed6fddf24652c22eaee858ee4f0b..2a7db81469ef209a4269106a0eddeb06abe2b191 100644 (file)
@@ -290,7 +290,7 @@ QUnit.test( "data-* attributes", function( assert ) {
 
        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" );
index a4c91b331b2b8ee5af9036e7293f79869cbcf111..f75ff481addc448debaaffcb942a55bcb669c1fd 100644 (file)
@@ -1949,7 +1949,7 @@ QUnit.test( "Animation callbacks (trac-11797)", function( assert ) {
        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(),
index a6633ec451560461e640aeb5580bca01d17bba9e..52e17a9ec039ebfd8ad89536de19f85c33ce5ac4 100644 (file)
@@ -465,7 +465,7 @@ QUnit.test( "html(String) with HTML5 (Bug trac-6485)", function( assert ) {
        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 );
 
index 0c81e48625d3adab315174c80460dbe67e41423d..6cf288c19b8eb17de0b3819d37fc5dd4cc141768 100644 (file)
@@ -643,7 +643,7 @@ QUnit.test( "attributes - special characters", function( assert ) {
        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 ],