]> source.dussan.org Git - jquery.git/log
jquery.git
10 years agoReadme: Fix punctuation in tile
upisfree [Sun, 29 Jun 2014 11:09:59 +0000 (14:09 +0300)]
Readme: Fix punctuation in tile

Ref df62159296e9de8b04653ba999a32f9be7bb2a73

10 years agoCore: Consistently use local reference to access()
Timo Tijhof [Tue, 24 Jun 2014 10:52:15 +0000 (12:52 +0200)]
Core: Consistently use local reference to access()

Ref 2fb719e5aa885232c5347576e9f9e1e341a7ba15
Ref 2063d6c1896b0c46c39fa0fdecef817f2e6f57c3

10 years agoBuild: Correct indentation issue
Oleg Gaidarenko [Thu, 3 Jul 2014 13:59:26 +0000 (17:59 +0400)]
Build: Correct indentation issue

10 years agoBuild: Add "timers_ie.js" file back to the repo
Oleg Gaidarenko [Thu, 3 Jul 2014 13:58:29 +0000 (17:58 +0400)]
Build: Add "timers_ie.js" file back to the repo

10 years agoSelector: Remove "#" exception for identifier tokens
Michał Gołębiowski [Mon, 30 Jun 2014 16:13:57 +0000 (18:13 +0200)]
Selector: Remove "#" exception for identifier tokens

Port Sizzle test change from:
https://github.com/jquery/sizzle/commit/f204a6112216f31685717d9fc1bf6cabf42b2ef1

(cherry-picked from 86e62d8b37ff9ad40e7c21c2c0c440a9cdfc550e)

10 years agoBuild: update grunt-bowercopy
Timmy Willison [Wed, 25 Jun 2014 17:51:39 +0000 (13:51 -0400)]
Build: update grunt-bowercopy

10 years agoBuild: update Sizzle to 1.11.1 and include license
Timmy Willison [Wed, 25 Jun 2014 17:43:09 +0000 (13:43 -0400)]
Build: update Sizzle to 1.11.1 and include license

10 years agoBuild: Move all external libraries to external directory
Scott González [Tue, 10 Jun 2014 19:32:25 +0000 (15:32 -0400)]
Build: Move all external libraries to external directory

Closes gh-1593

Conflicts:
Gruntfile.js
test/index.html

10 years agoBuild: Remove unused Sizzle test files
Scott González [Tue, 10 Jun 2014 19:13:03 +0000 (15:13 -0400)]
Build: Remove unused Sizzle test files

10 years agoBuild: Upgrade to grunt-bowercopy 1.0.0
Scott González [Tue, 10 Jun 2014 19:58:28 +0000 (15:58 -0400)]
Build: Upgrade to grunt-bowercopy 1.0.0

10 years agoBuild: ignore test dependencies for npm install
Timmy Willison [Tue, 24 Jun 2014 15:17:44 +0000 (11:17 -0400)]
Build: ignore test dependencies for npm install

10 years agoBuild: Update commitplease dev dependency
Oleg Gaidarenko [Sun, 15 Jun 2014 23:01:53 +0000 (03:01 +0400)]
Build: Update commitplease dev dependency

Ref 39b76064d9400295a383291ab6e821e259b67832

10 years agoBuild: Move test to appropriate module
Oleg Gaidarenko [Sat, 14 Jun 2014 16:31:08 +0000 (20:31 +0400)]
Build: Move test to appropriate module

Ref fbdbb6fd431a3f598b581079b0ca37c399d369d4

10 years agoEffects: Improve raf logic
Oleg Gaidarenko [Sun, 15 Jun 2014 22:59:41 +0000 (02:59 +0400)]
Effects: Improve raf logic

* Make animation behave as if jQuery.fx.off = true if document is hidden

* Use cancelAnimationFrame in jQuery.fx.stop

Ref 708764f47b0c8de152bbb444d0f608db558b76ed

10 years agoEffects: Reintroduce use of requestAnimationFrame
Oleg Gaidarenko [Sun, 15 Jun 2014 22:43:31 +0000 (02:43 +0400)]
Effects: Reintroduce use of requestAnimationFrame

Same as before, just use don't use prefixes, since they pretty match useless now
and use page visibility API to determine if animation should start.

Also null the requestAnimationFrame attribute in window for tests since
sinon does not provide fake method for it.

Fixes #15147
Ref 72119e0023dcc0d9807caf6d988598b74abdc937

10 years agoEffects: Remove needless operations in tests
Oleg Gaidarenko [Fri, 9 May 2014 00:08:48 +0000 (04:08 +0400)]
Effects: Remove needless operations in tests

Ref 10024c25820f08139f11d924cec552a26dfbba18

10 years agoAjax: Always use script injection in globalEval
Oleg Gaidarenko [Sun, 15 Jun 2014 21:45:24 +0000 (01:45 +0400)]
Ajax: Always use script injection in globalEval

Fixes #14757
Ref bbdfbb4ee859fe9319b348d88120ddc2c9efbd63

10 years agoCSS: Do not throw on frame elements in FF
Oleg Gaidarenko [Sun, 15 Jun 2014 21:26:49 +0000 (01:26 +0400)]
CSS: Do not throw on frame elements in FF

IE9-10 throws on elements created in popups (see #14150), FF meanwhile throws
on frame elements through "defaultView.getComputedStyle" (see #15098)

Use "defaultView" if in the popup which would fix IE issue,
use "window.getComputedStyle" which would fix FF issue.

And everybody wins, except performance, but who cares right?

Fixes #15098
Ref e488d985cfb10ab8c684bbc6a9b8ff3eae23bf83

10 years agoTests: Clean up isNumeric tests
Richard Gibson [Sat, 7 Jun 2014 18:33:36 +0000 (14:33 -0400)]
Tests: Clean up isNumeric tests

10 years agoCore: Work around loss of precision from parseFloat
Richard Gibson [Sat, 7 Jun 2014 18:22:49 +0000 (14:22 -0400)]
Core: Work around loss of precision from parseFloat

Fixes #15100

10 years agoWrap: Declare a dependency on the manipulation module 1592/head
TJ VanToll [Fri, 30 May 2014 20:13:00 +0000 (16:13 -0400)]
Wrap: Declare a dependency on the manipulation module

Fixes #15121
Closes gh-1589

10 years agoAjax: Support usage without jQuery.event
TJ VanToll [Fri, 30 May 2014 13:48:43 +0000 (09:48 -0400)]
Ajax: Support usage without jQuery.event

Fixes #15118
Closes gh-1588

10 years agoAjax: move ajax event aliases to their own file
Timmy Willison [Mon, 2 Jun 2014 16:39:11 +0000 (12:39 -0400)]
Ajax: move ajax event aliases to their own file

Fixes #15126

10 years agoSelector: Use jQuery reference not Sizzle
Oleg Gaidarenko [Thu, 29 May 2014 17:54:45 +0000 (21:54 +0400)]
Selector: Use jQuery reference not Sizzle

(Cherry-picked from 3b9057a18de31b838bd0dd25ea466993b62f9dd9)

10 years agoSelector: Fix test iframe submission for firefox
Oleg Gaidarenko [Thu, 29 May 2014 17:45:59 +0000 (21:45 +0400)]
Selector: Fix test iframe submission for firefox

Ref jquery/sizzle@20fbadb0870bd30e0e66c68891f121c0450374c4
(Cherry-picked from efc4f8d7814a8c44bd5b4d924d237a04263e1a85)

10 years agoRelease: ensure Sizzle is the latest tag
Timmy Willison [Fri, 23 May 2014 16:45:51 +0000 (12:45 -0400)]
Release: ensure Sizzle is the latest tag

Fixes #14915

10 years agoBuild: run jshint and jscs on release scripts
Timmy Willison [Fri, 23 May 2014 16:45:19 +0000 (12:45 -0400)]
Build: run jshint and jscs on release scripts

10 years agoBuild: update AUTHORS.txt
Timmy Willison [Fri, 23 May 2014 17:56:16 +0000 (13:56 -0400)]
Build: update AUTHORS.txt

10 years agoAjax, Manipulation: don't test cross-document manip in Android 2.3
Michał Gołębiowski [Mon, 5 May 2014 13:45:57 +0000 (15:45 +0200)]
Ajax, Manipulation: don't test cross-document manip in Android 2.3

(cherry-picked from 213b9604f3da654e4281eeea56fcb169f88ffd19)

Fixes #14796
Closes gh-1572

10 years agoCore: Correct the number of expected tests
Michał Gołębiowski [Fri, 2 May 2014 14:03:52 +0000 (16:03 +0200)]
Core: Correct the number of expected tests

(cherry-picked from da148f158f40b474841ad7a60cc39c5868cf420c)

10 years agoCore: Remove repeated test
Liang Peng [Thu, 1 May 2014 11:37:23 +0000 (19:37 +0800)]
Core: Remove repeated test

(cherry-picked from 69d4a48ff67188214bc28ec1a4d138c5997ce171)

Closes gh-1570

10 years agoBuild: Bump version to 1.11.2-pre
Dave Methvin [Thu, 1 May 2014 20:46:12 +0000 (16:46 -0400)]
Build: Bump version to 1.11.2-pre

The release script didn't go perfectly.

10 years agoBower: Update project version to 1.11.2-pre
Dave Methvin [Thu, 1 May 2014 20:43:52 +0000 (16:43 -0400)]
Bower: Update project version to 1.11.2-pre

10 years agoData: Work around IE11 bug with onpageshow attribute
Dave Methvin [Wed, 30 Apr 2014 14:43:39 +0000 (10:43 -0400)]
Data: Work around IE11 bug with onpageshow attribute

Fixes #14894
(cherry picked from commit b8133e282ceebf502c7c08d849b176a929c9c450)

Conflicts:
src/data.js
test/unit/data.js

10 years agoEffects: Respect display value on inline elements
Oleg Gaidarenko [Sat, 26 Apr 2014 17:24:05 +0000 (21:24 +0400)]
Effects: Respect display value on inline elements

Take "olddisplay" value into the account

Fixes #14824
Closes gh-1566
Ref 73fe17299a840a8a7f3ffffcac15e32a88bd3d66

(cherry-picked from c34dbf5a8d135e0f873ab7a76d1c8f8e316f31e4)
Conflicts:
src/effects.js

10 years agoBuild: Spaces vs tabs
Oleg Gaidarenko [Thu, 24 Apr 2014 19:45:55 +0000 (23:45 +0400)]
Build: Spaces vs tabs

* Use tabs instead of spaces in jscs config

* Always use spaces in package.json (really hope this is temporary)

(cherry-picked from bbace100a3ad51287cd2864eeb03ddebb381d44f)

10 years agoBuild: Add "browser" keyword for npm
Dave Methvin [Wed, 23 Apr 2014 16:02:55 +0000 (12:02 -0400)]
Build: Add "browser" keyword for npm
(cherry picked from commit 108428bcabb7027852ecd656b98f110a444039d0)

10 years agoBuild: Remove json check for jscs config
Oleg Gaidarenko [Wed, 23 Apr 2014 16:02:06 +0000 (20:02 +0400)]
Build: Remove json check for jscs config

(cherry-picked from 1514dca501fd383a9cdb6b42cce7c71fdad1ee38)

10 years agoSelector: Update Sizzle to 1.10.19
Richard Gibson [Fri, 18 Apr 2014 21:17:51 +0000 (17:17 -0400)]
Selector: Update Sizzle to 1.10.19

Fixes #14901
Fixes #14793
(cherry picked from commit 90b43de21296cf59af7dd37c49c1a9a4f8483f68)

10 years agoCss: Use only positive integers as values for widows/orphans
Michał Gołębiowski [Fri, 18 Apr 2014 00:07:17 +0000 (02:07 +0200)]
Css: Use only positive integers as values for widows/orphans

According to http://www.w3.org/TR/CSS2/page.html#propdef-orphans, widows
and orphans can take only positive integer values. Together with a Chrome 34
regression this caused the test to fail.

(cherry-picked from def4841cfaf68e2ec156c554f8efa4aa64203f36)

Fixes #15016
Closes gh-1563

10 years agoDimensions: Reverse a check to avoid potential reflows
Christian Kosmowski [Mon, 14 Apr 2014 14:00:42 +0000 (16:00 +0200)]
Dimensions: Reverse a check to avoid potential reflows

Fixes #14979
Closes gh-1560
(cherry picked from commit 1ca84214cc89d9e5f8af12b18b34426fc91b1b08)

Conflicts:
AUTHORS.txt

10 years agoBuild: Update version from pre to -pre
Scott González [Thu, 17 Apr 2014 19:11:24 +0000 (15:11 -0400)]
Build: Update version from pre to -pre

Ref jquery/jquery-release#61
Closes gh-1562

10 years agoBuild: Remove Sizzle from run names passed to the testswarm task
Michał Gołębiowski [Tue, 15 Apr 2014 14:38:23 +0000 (16:38 +0200)]
Build: Remove Sizzle from run names passed to the testswarm task

(cherry-picked from d0131da70ed0144c36af3494e2f843f62d740b1a)

10 years agoBuild: Update jscsrc
Oleg Gaidarenko [Tue, 15 Apr 2014 14:08:18 +0000 (18:08 +0400)]
Build: Update jscsrc

* Update "grunt-jscs-checker" package

* Use ".jscsrc" file instead of old ".jscs.json"

* Use jquery preset instead of explicitly defining all the jscs rules

(Cherry-picked from b7283d738ec4c2d9d87cb16c32a3209cab567ed1 commit)

10 years agoTests: Comply the style guide
Oleg Gaidarenko [Sat, 5 Apr 2014 14:16:09 +0000 (18:16 +0400)]
Tests: Comply the style guide

10 years agoTests: Fix failing ajax tests in oldIE
Oleg Gaidarenko [Fri, 4 Apr 2014 18:31:38 +0000 (22:31 +0400)]
Tests: Fix failing ajax tests in oldIE

10 years agoTests: Remove unused variables
Oleg Gaidarenko [Wed, 26 Feb 2014 23:33:15 +0000 (03:33 +0400)]
Tests: Remove unused variables

10 years agoTests: Copy some Sizzle combinators tests
Oleg Gaidarenko [Wed, 26 Feb 2014 23:32:02 +0000 (03:32 +0400)]
Tests: Copy some Sizzle combinators tests

10 years agoTests: Add more tests for Sizzle attributes
Oleg Gaidarenko [Wed, 26 Feb 2014 23:23:10 +0000 (03:23 +0400)]
Tests: Add more tests for Sizzle attributes

10 years agoTests: Add test for selectors with commas
Oleg Gaidarenko [Wed, 26 Feb 2014 23:13:26 +0000 (03:13 +0400)]
Tests: Add test for selectors with commas

10 years agoTests: Copy Sizzle.uniqueSort tests
Oleg Gaidarenko [Wed, 26 Feb 2014 23:01:48 +0000 (03:01 +0400)]
Tests: Copy Sizzle.uniqueSort tests

10 years agoTests: Copy Sizzle.contains tests
Oleg Gaidarenko [Wed, 26 Feb 2014 23:01:07 +0000 (03:01 +0400)]
Tests: Copy Sizzle.contains tests

10 years agoTests: Move some of the Sizzle tests to selector
Oleg Gaidarenko [Mon, 24 Feb 2014 18:05:16 +0000 (22:05 +0400)]
Tests: Move some of the Sizzle tests to selector

10 years agoTests: Improve jsonp tests
Oleg Gaidarenko [Tue, 18 Feb 2014 17:50:42 +0000 (21:50 +0400)]
Tests: Improve jsonp tests

Since global variable for callback always would be equal to undefined value
it better to check for boolean instead

10 years agoTests: Correct logic of a broken assertion
Oleg Gaidarenko [Tue, 18 Feb 2014 17:46:00 +0000 (21:46 +0400)]
Tests: Correct logic of a broken assertion

10 years agoBuild: Add lint task
Oleg Gaidarenko [Tue, 18 Feb 2014 16:34:49 +0000 (20:34 +0400)]
Build: Add lint task

10 years agoBuild: Use jscs to check test helpers
Oleg Gaidarenko [Tue, 18 Feb 2014 16:32:17 +0000 (20:32 +0400)]
Build: Use jscs to check test helpers

Also fix issues found by jscs

Conflicts:
test/data/testrunner.js

10 years agoTests: Remove Sizzle intergration tests
Oleg Gaidarenko [Tue, 18 Feb 2014 15:49:24 +0000 (19:49 +0400)]
Tests: Remove Sizzle intergration tests

Fixes #14818

Conflicts:
test/data/testrunner.js

10 years agoTests: Simplify "testTimeout" option
Oleg Gaidarenko [Mon, 27 Jan 2014 19:26:27 +0000 (23:26 +0400)]
Tests: Simplify "testTimeout" option

10 years agoTests: Remove QUnit start hook
Oleg Gaidarenko [Mon, 27 Jan 2014 19:32:46 +0000 (23:32 +0400)]
Tests: Remove QUnit start hook

Conflicts:
test/data/testrunner.js

10 years agoBuild: set default testswarm timeout to 15 minutes
Michał Gołębiowski [Tue, 15 Apr 2014 09:47:52 +0000 (11:47 +0200)]
Build: set default testswarm timeout to 15 minutes

We're not testing on IE6-7 anymore.

(cherry-picked from a0568b07d8dcd94c3b8a27c0cf5747235c6bf93c)

10 years agoBuild: use browserSets from config file; allow to override
Michał Gołębiowski [Tue, 15 Apr 2014 09:34:02 +0000 (11:34 +0200)]
Build: use browserSets from config file; allow to override

(cherry-picked from 7869891a97eae93699cc239274e73e53daedf781)

10 years agoBuild: Set npmTags and use exec properly 1553/head
Jörn Zaefferer [Tue, 1 Apr 2014 14:37:57 +0000 (16:37 +0200)]
Build: Set npmTags and use exec properly

10 years agoBuild: change .gitattributes; use system line ends for non-JS files
Michał Gołębiowski [Fri, 4 Apr 2014 09:38:15 +0000 (11:38 +0200)]
Build: change .gitattributes; use system line ends for non-JS files

(cherry-picked from 99d735ab4662f45c3b65ea1200fa0d3e2b671111)

10 years agoSupport: Add Android support tests results
Michał Gołębiowski [Mon, 31 Mar 2014 21:07:24 +0000 (23:07 +0200)]
Support: Add Android support tests results

10 years agoEffects: Fix inline element animations
Richard Gibson [Mon, 24 Mar 2014 16:36:15 +0000 (12:36 -0400)]
Effects: Fix inline element animations

Ref 80cf965e02e71dc1b11bf8c1b3d216b9ab4e99ac
Ref #14848

10 years agoBuild: Update release script for new jquery-release API
Scott González [Tue, 18 Mar 2014 15:48:21 +0000 (11:48 -0400)]
Build: Update release script for new jquery-release API

Closes gh-1544
(cherry picked from commit 5265cdac3d84b7bb4f8013ef10adaa5a9968fb1c)

10 years agoCss: change boxSizingReliable in IE<9.
Michał Gołębiowski [Sun, 26 Jan 2014 01:55:57 +0000 (02:55 +0100)]
Css: change boxSizingReliable in IE<9.

Change boxSizingReliable test value to false in all IE versions.
Modify support comments to argument getComputedStyle guards
with oldIE support and not node.js which is not supported in 1.x.

Closes gh-1498

10 years agoEvent: Remove redundant fallback to getPreventDefault()
Michał Gołębiowski [Tue, 18 Mar 2014 22:02:49 +0000 (23:02 +0100)]
Event: Remove redundant fallback to getPreventDefault()

Android 2.3 is happy with returnValue already used for oldIE;
the getPreventDefault() fallback is not needed.

Closes gh-1546

10 years agoEffects: Don't overwrite display:none when .hide()ing hidden elements
Richard Gibson [Thu, 20 Mar 2014 07:39:36 +0000 (03:39 -0400)]
Effects: Don't overwrite display:none when .hide()ing hidden elements

Fixes #14848
Closes gh-1548
(cherry picked from commit 890d441aa5d319e49951ba6f0ec719cd4cb96759)

Conflicts:
src/effects.js

10 years agoCSS: jQuery#hide should always save display value
Oleg Gaidarenko [Wed, 5 Feb 2014 05:54:15 +0000 (09:54 +0400)]
CSS: jQuery#hide should always save display value

Fixes #14750
Closes gh-1509
(cherry picked from commit 5a8f76933288396b915800a18240aa17d3414201)

Conflicts:
src/css.js

10 years agoAttributes: Trim whitespace from option text when returned as a value
John Hoven [Thu, 6 Mar 2014 19:56:09 +0000 (13:56 -0600)]
Attributes: Trim whitespace from option text when returned as a value

Fixes #14858
Ref #14686
Closes gh-1531

10 years agoCSS: window.getDefaultComputedStyle may return null
Rodrigo Rosenfeld Rosas [Tue, 28 Jan 2014 17:19:25 +0000 (15:19 -0200)]
CSS: window.getDefaultComputedStyle may return null

Fixes #14736
Closes gh-1501
(cherry picked from commit 51910ba8a5aff4cd1a811f1fdb76a6c62a09a666)

10 years agoCore: Fix comments for .get() method
Benjy Cui [Tue, 18 Mar 2014 09:15:58 +0000 (17:15 +0800)]
Core: Fix comments for .get() method

Closes gh-1547
(cherry picked from commit ca0086b55a158d8a4347f94254878d6dc5dd90ed)

10 years agoTests: Remove obsolete speed directory
Dave Methvin [Thu, 20 Mar 2014 13:00:22 +0000 (09:00 -0400)]
Tests: Remove obsolete speed directory

Closes gh-1551
(cherry picked from commit 9ad6e7e93e62a27e6ef803fbf46623bca732750f)

Conflicts:
speed/event.html
speed/slice.vs.concat.html

10 years agoBuild: Add commitplease for commit msg checking
Jörn Zaefferer [Fri, 21 Feb 2014 11:53:36 +0000 (12:53 +0100)]
Build: Add commitplease for commit msg checking

Closes gh-1523
(cherry picked from commit 176a2913260b4ec890118137ccc9a290064a59be)

Conflicts:
package.json

10 years agoCore: Change the sleep time in dont_return.php from 100s to 30s
Michał Gołębiowski [Wed, 19 Mar 2014 01:29:04 +0000 (02:29 +0100)]
Core: Change the sleep time in dont_return.php from 100s to 30s

Half a minute is more than enough for the test to finish even in the slowest
browsers and in case of starving the PHP FPM process pool, one has to wait
for only half a minute to try again.

(cherry-picked from a10aa3aac5223c250327d00c500ceb9c7a18b7f9)

10 years agoEvent: Don't test stopImmediatePropagation in Android 2.3
Michał Gołębiowski [Tue, 18 Mar 2014 20:00:42 +0000 (21:00 +0100)]
Event: Don't test stopImmediatePropagation in Android 2.3

Android 2.3 doesn't support stopImmediatePropagation; jQuery fallbacks
to stopPropagation in such a case.

10 years agoCore: Change the sleep time in dont_return.php to a sane value
Michał Gołębiowski [Tue, 18 Mar 2014 15:50:04 +0000 (16:50 +0100)]
Core: Change the sleep time in dont_return.php to a sane value

PHP sleep function accepts time in seconds, not milliseconds; the previous
value was starving the PHP FPM process pool.

(cherry-picked from b5074944b0b27f50ffe2ca9f96348b8d0cd5c82c)

10 years agoBuild: Change the timeout for the weekly job from 4h to 1h
Michał Gołębiowski [Tue, 18 Mar 2014 10:55:06 +0000 (11:55 +0100)]
Build: Change the timeout for the weekly job from 4h to 1h

(cherry-picked from c1e9bb9e61a79a1d0c4300cc31eac7ff61107085)

10 years agoCore: Blacklist the ready test on async-loaded jQuery in iOS7
Michał Gołębiowski [Mon, 17 Mar 2014 17:13:00 +0000 (18:13 +0100)]
Core: Blacklist the ready test on async-loaded jQuery in iOS7

(cherry-picked from 551578eb3676f67cccd8a91a582c2225bc970cac)

Fixes #14882

10 years agoEvent: Unit test for #14741 fix
Dave Methvin [Sun, 16 Mar 2014 14:46:57 +0000 (10:46 -0400)]
Event: Unit test for #14741 fix

Fixes #14741
Closes gh-1503
(cherry picked from commit 472f70a9df75c289393d6618c36257a04f9cb902)

10 years agoEvent: Treat Pointer events like mouse events, #14741
louisremi [Thu, 30 Jan 2014 15:07:06 +0000 (16:07 +0100)]
Event: Treat Pointer events like mouse events, #14741

Ref #14741
Ref gh-1503
(cherry picked from commit e06f428f6ed99e0fafb2e21c456eafc570e3e5ba)

10 years agoReadme: Fix subsection titles and grammar, thanks @robgraeber
Dave Methvin [Thu, 13 Mar 2014 18:16:52 +0000 (11:16 -0700)]
Readme: Fix subsection titles and grammar, thanks @robgraeber

Fixes gh-1540
(cherry picked from commit 44247b1cf2f4e76e8153f8cbac69dcfd5b2eacd4)

10 years agoBuild: Refactor testswarm Grunt task options
Michał Gołębiowski [Sun, 16 Mar 2014 03:09:12 +0000 (04:09 +0100)]
Build: Refactor testswarm Grunt task options

Add a possibility to specify the project name. Infer browserSets & timeout
out of it instead of defining it in the Jenkins configuration.

(cherry-picked from aa951a3184fc02551bfcb8381cdac28298432419)

10 years agoCSS: Add flex-grow and flex-shrink to cssNumber
Roman Rei_ [Mon, 10 Mar 2014 18:30:22 +0000 (19:30 +0100)]
CSS: Add flex-grow and flex-shrink to cssNumber

Fixes #14888
Closes gh-1536
(cherry picked from commit c29e9c4db18738f7bfeb6b4a8019121a9079beb6)

10 years agoReadme: updating QUnit information
Leonardo Balter [Wed, 22 Jan 2014 03:47:54 +0000 (01:47 -0200)]
Readme: updating QUnit information

updates QUnit reference site and method naming.

Closes gh-1493
(cherry picked from commit 594687abdcd8427df1face9466ebff7f04b36fc6)

10 years agoAMD: Note on AMD best practices
S. Andrew Sheppard [Thu, 9 Jan 2014 21:27:18 +0000 (15:27 -0600)]
AMD: Note on AMD best practices

Fixes #14687
Closes gh-1478
(cherry picked from commit 19220c0f29fa60d80a2beb76f048ffc8b972ba35)

Conflicts:
AUTHORS.txt

10 years agoCore: Bump timeouts to stabilize doc ready test
Michał Gołębiowski [Thu, 13 Mar 2014 02:26:27 +0000 (03:26 +0100)]
Core: Bump timeouts to stabilize doc ready test

The "document ready when jQuery loaded asynchronously" test fails all the time
in iOS7 and sometimes in other browsers. Bumping the timeouts *might* help
these other browsers to be less flakey here.

(cherry-picked from 854d242db457e3191e3ca1f2a366f6c981a12fbc)

10 years agoEvent: Call underlying stopImmediatePropagation when present
Dave Methvin [Thu, 6 Mar 2014 03:46:23 +0000 (22:46 -0500)]
Event: Call underlying stopImmediatePropagation when present

Fixes #13997
(cherry picked from commit 6a89db86ed817f6a7498076e2a06b90f9fce0831)

10 years agoCore: Add test for jQuery.ready.promise fallback load
Michał Gołębiowski [Thu, 13 Mar 2014 01:18:29 +0000 (02:18 +0100)]
Core: Add test for jQuery.ready.promise fallback load

Fix #13655
Close gh-1209
Ref 32b066d3805a48f8c8312562ed52a1b5910b1d85

10 years agoSupport: Make the support matrix for iOS 6 match iOS 7 as well
Michał Gołębiowski [Thu, 13 Mar 2014 00:48:35 +0000 (01:48 +0100)]
Support: Make the support matrix for iOS 6 match iOS 7 as well

(cherry-picked from 26ce21786252981563e49e91a85b3e0bfa16c3e3)

10 years agoBuild: Fix testswarm task, use API correctly
Jörn Zaefferer [Wed, 12 Mar 2014 10:08:16 +0000 (11:08 +0100)]
Build: Fix testswarm task, use API correctly

(cherry-picked from 22c515c6717efe46685b43215208aa4e5648fbc8)

10 years agoBuild: Allow to specify timeout in the testswarm task
Michał Gołębiowski [Tue, 11 Mar 2014 20:12:39 +0000 (21:12 +0100)]
Build: Allow to specify timeout in the testswarm task

(cherry-picked from a81dbc4ed82bc38b1ac5f6a8242e044232ea1594)

10 years agoBuild: Make it possible to change browserSets in the testswarm task
Michał Gołębiowski [Mon, 10 Mar 2014 19:37:11 +0000 (20:37 +0100)]
Build: Make it possible to change browserSets in the testswarm task

(cherry-picked from 14872941f9de78e7436e58ac1f03a4b2d5aa34e8)

10 years agoCss: Fix tests
Michał Gołębiowski [Mon, 10 Mar 2014 18:53:50 +0000 (19:53 +0100)]
Css: Fix tests

It's not easy to find a CSS property that is implemented even in
ancient browsers and that returns a consistent result among browsers
when passed through .css(). color didn't work since Firefox normalizes
it an empty value to rgb(0, 0, 0).

(cherry-picked from 0c12cb3910c446960a274fb0eab11b8830bed71f)

10 years agoSupport: Simplify the box-sizing test 1529/head
Michał Gołębiowski [Tue, 4 Mar 2014 22:49:09 +0000 (23:49 +0100)]
Support: Simplify the box-sizing test

Don't require body in the support.boxSizing test.

10 years agoCss: Revert 24e587929f62428e1959b10aace6dc4fd65ab397
Michał Gołębiowski [Sun, 9 Mar 2014 23:59:14 +0000 (00:59 +0100)]
Css: Revert 24e587929f62428e1959b10aace6dc4fd65ab397

The workaround to be able to change !important styles broke the browser
keeping the old CSS value if the new one was rejected. Patching it would
involve a significant perf hit (~33%) so the initial patch needs to be
reverted instead.

Tests by m_gol & gibson042.

(cherry-picked from 10e654218a65ec9a0ffc875137cea945389c69f1)

Fixes #14836
Closes gh-1532

10 years agoAjax, Effects: Disable Chrome 31 workarounds
Michał Gołębiowski [Mon, 10 Mar 2014 14:03:03 +0000 (15:03 +0100)]
Ajax, Effects: Disable Chrome 31 workarounds

10 years agoBuild: Fix AMD option for custom builds
Timmy Willison [Fri, 7 Mar 2014 14:55:26 +0000 (09:55 -0500)]
Build: Fix AMD option for custom builds

Fixes #14859