Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/release/dist.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = function( Release, complete ) {
shell = require( "shelljs" ),
pkg = require( Release.dir.repo + "/package.json" ),
distRemote = Release.remote.replace( "jquery.git", "jquery-dist.git" ),
// These files are included with the distrubtion
// These files are included with the distribution
files = [
"src",
"LICENSE.txt",
Expand Down
2 changes: 1 addition & 1 deletion test/data/support/csp.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
# This test page checkes CSP only for browsers with "Content-Security-Policy" header support
# This test page checks CSP only for browsers with "Content-Security-Policy" header support
# i.e. no old WebKit or old Firefox
header("Content-Security-Policy: default-src 'self'; report-uri csp-log.php");
?>
Expand Down
2 changes: 1 addition & 1 deletion test/unit/event.js
Original file line number Diff line number Diff line change
Expand Up @@ -2725,7 +2725,7 @@ test( "Donor event interference", function( assert ) {
jQuery( "#donor-input" )[ 0 ].click();
} );

test( "originalEvent property for Chrome, Safari and FF of simualted event", function( assert ) {
test( "originalEvent property for Chrome, Safari and FF of simulated event", function( assert ) {
var userAgent = window.navigator.userAgent;

if ( !(/chrome/i.test( userAgent ) ||
Expand Down
2 changes: 1 addition & 1 deletion test/unit/manipulation.js
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ test( "html(String) tag-hyphenated elements (Bug #1987)", function() {
var j = jQuery("<tr-multiple-hyphens><td-with-hyphen>text</td-with-hyphen></tr-multiple-hyphens>");
ok( jQuery.nodeName(j[0], "TR-MULTIPLE-HYPHENS"), "Tags with multiple hypens" );
ok( jQuery.nodeName(j.children()[0], "TD-WITH-HYPHEN"), "Tags with multiple hypens" );
equal( j.children().text(), "text", "Tags with multple hypens behave normally" );
equal( j.children().text(), "text", "Tags with multiple hypens behave normally" );
});

test( "IE8 serialization bug", function() {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/tween.js
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ test( "jQuery.Tween - custom propHooks - advanced values", function() {

// Some day this NaN assumption might change - perhaps add a "calc" helper to the hooks?
ok( isNaN( tween.now ), "Used return value from propHook.get" );
equal( tween.pos, 0.5, "But the eased percent is still avaliable" );
equal( tween.pos, 0.5, "But the eased percent is still available" );
ok( propHook.set.calledWith( tween ), "Called propHook.set function with correct parameters" );

delete jQuery.Tween.propHooks.testHooked;
Expand Down