Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commiteb9ceb2

Browse files
authored
Docs: Fix incorrecttrac-NUMBER references
PRgh-4993 changed a few too many issue references to `trac-NUMBER` ones. Thischange fixes them. It also fixes a typo in one Trac issue number in selectortests.Refgh-4993Closesgh-4995
1 parent9603b3c commiteb9ceb2

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

‎test/unit/ajax.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2770,8 +2770,8 @@ if ( typeof window.ArrayBuffer === "undefined" || typeof new XMLHttpRequest().re
27702770
});
27712771

27722772
// Selector should be trimmed to avoid leading spaces (trac-14773)
2773-
// Selector should include any valid non-HTML whitespace (trac-3003)
2774-
QUnit.test("jQuery.fn.load( URL_SELECTOR with non-HTML whitespace(trac-3003) )",function(assert){
2773+
// Selector should include any valid non-HTML whitespace (gh-3003)
2774+
QUnit.test("jQuery.fn.load( URL_SELECTOR with non-HTML whitespace(gh-3003) )",function(assert){
27752775
assert.expect(1);
27762776
vardone=assert.async();
27772777
jQuery("#first").load(baseURL+"test3.html #whitespace\\\\xA0 ",function(){

‎test/unit/core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ QUnit.test( "jQuery.map", function( assert ) {
817817
result=jQuery.map(Array(300000),function(v,k){
818818
returnk;
819819
});
820-
assert.equal(result.length,300000,"Able to map 300000 records without any problems (trac-4320)");
820+
assert.equal(result.length,300000,"Able to map 300000 records without any problems (gh-4320)");
821821
}else{
822822
assert.ok("skip","Array#flat isn't supported in IE");
823823
}

‎test/unit/css.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1182,7 +1182,7 @@ if ( jQuery.fn.offset ) {
11821182
});
11831183
}
11841184

1185-
QUnit.test("Do not append px (trac-9548, trac-12990,trac-2792)",function(assert){
1185+
QUnit.test("Do not append px (trac-9548, trac-12990,gh-2792)",function(assert){
11861186
assert.expect(4);
11871187

11881188
var$div=jQuery("<div>").appendTo("#qunit-fixture");

‎test/unit/data.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ QUnit.test( "data-* attributes", function( assert ) {
290290

291291
child.appendTo("#qunit-fixture");
292292
assert.equal(child.data("myobj"),"old data","Value accessed from data-* attribute");
293-
assert.equal(child.data("foo-42"),"boosh","camelCasing does not affect numbers (trac-1751)");
293+
assert.equal(child.data("foo-42"),"boosh","camelCasing does not affect numbers (gh-1751)");
294294

295295
child.data("myobj","replaced");
296296
assert.equal(child.data("myobj"),"replaced","Original data overwritten");

‎test/unit/effects.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1949,7 +1949,7 @@ QUnit.test( "Animation callbacks (trac-11797)", function( assert ) {
19491949
this.clock.tick(10);
19501950
});
19511951

1952-
QUnit.test("Animation callbacks in order (trac-2292)",function(assert){
1952+
QUnit.test("Animation callbacks in order (gh-2283)",function(assert){
19531953
assert.expect(9);
19541954

19551955
vardone=assert.async(),

‎test/unit/manipulation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ QUnit.test( "html(String) with HTML5 (Bug trac-6485)", function( assert ) {
465465
assert.equal(jQuery("#qunit-fixture").children().children().children().length,1,"Make sure nested HTML5 elements can hold children.");
466466
});
467467

468-
QUnit.test("html(String) tag-hyphenated elements (Bugtrac-1987)",function(assert){
468+
QUnit.test("html(String) tag-hyphenated elements (Buggh-1987)",function(assert){
469469

470470
assert.expect(27);
471471

‎test/unit/selector.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ QUnit.test( "attributes - special characters", function( assert ) {
643643
varattrbad;
644644
vardiv=document.createElement("div");
645645

646-
// trac-3279
646+
// trac-3729
647647
div.innerHTML="<div id='foo' xml:test='something'></div>";
648648
assert.deepEqual(jQuery("[xml\\:test]",div).get(),
649649
[div.firstChild],

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp