John Bender
9b88587426
completed doc relative tests
2011-04-27 23:07:58 -07:00
John Bender
84c1cfbcd8
first set of tests for path handling per Kin's wiki page
2011-04-27 22:43:41 -07:00
John Bender
31604bb75a
removed uncecessary clone for event names array to fix the tests
2011-04-27 22:04:00 -07:00
Kin Blas
19c06952fd
Changes to allow 3rd party transitions. Developers can now register a custom transition by adding their transition handler to the $.mobile.transitionHandlers dictionary. The name of the custom transition is used as the key within the transtionsHandlers dictionary, and should be the same name used within the @data-transtion attribute.
...
The expected prototype for a transitionHandler is as follows:
function handler(name, reverse, $to, $from)
The name parameter is the name of the transition as specified by @data-transition attribute, reverse is a boolean that is false for a normal transition, and true for a reverse transition. The $to param is a jQuery collection containing the page that is being transitioned "to", and $from is an optional collection that tells us what page we are transitioning "from". Because $from is optional, handler developers should take care and check $from to make sure it is not undefined before attempting to dereference it.
In addition to registering custom transition by name, developers can specify a handler to use in the case where a transition name is specified and does not exist within the $.mobile.transitionHanlders dictionary. Within jQuery Mobile, the default handler for unknown transition types is the $.mobile.css3Transition() handler. This handler always assumes that the transition name is to be used as a CSS class to be placed on the $to and $from elements. To change the default handler, simply set $.mobile.defaultTransitionHandler to you function handler:
$.mobile.defaultTransitionHandler = myTransitionHandler;
The changes to make all this necessary are as follows:
- Created $.mobile.noneTransitionHandler which is the default transitionHandler for the framework that simply adds and removes the page active class on the $from and $to pages with no animations.
- Moved class based transition code into a new plugin jquery.mobile.transition.js file. This plugin, when present, overrides the noneTransitionHandler as the defaultTranstionHandler for the framework so that CSS3 animation transitions are available.
- Removed code related to the setting/removal of the ui-mobile-viewport-perspective class. The css3TransitionHandler plugin takes care of automatically placing a "viewport-<transition name>" class on the viewport (body) element. This allows any other transition to specify properties on the viewport that are necessary to accomplish the transition.
- changed the CSS class ui-mobile-viewport-perspective to viewport-flip to match code changes. This makes it more apparent that setting -webkit-perspective is only used with the flip transition.
- Updated js/index.php, Makefile and build.xml to include the new jquery.mobile.transition.js file.
2011-04-26 14:06:10 -07:00
John Bender
dfab3d7920
increased two test timeouts to give slower ci test browser time work, also included a small whitespace fix to nav
2011-04-21 23:17:08 -07:00
John Bender
70a86c748f
added a sequenced test to make sure that opening a dialog sized select menu resulted in that same dialog many times. also moved one of the event tests over to core
2011-04-21 22:32:37 -07:00
John Bender
b0e3d5fbf1
select test cleanup, added test to check that the dialog hash key is removed when a large select menu item is clicked Fixes #1454
2011-04-19 23:28:11 -07:00
John Bender
49b1b780ed
test alterations for absolute navigation
2011-04-18 21:46:53 -07:00
John Bender
b83d81962e
tests for dialog query param support
2011-04-14 21:49:50 -07:00
John Bender
a267a3077c
added tests to verify that dialogs referencing themselves with query params don't do anything
2011-04-14 21:49:50 -07:00
scottjehl
d97a964884
been meaning to do this for a while.
2011-04-14 16:04:47 -04:00
Kin Blas
8ca008ee23
It doesn't get any true-er with an extra 'u'!
2011-04-13 18:09:41 -07:00
John Bender
ac736c6053
moved previous strip query tests to tests for cleanHash
2011-04-12 01:16:20 -07:00
John Bender
aee4c631da
removed stripQuery helper to reduce confusion and complexity as striping the query param from a url is much more complex than a hash as it was originally intended for
2011-04-12 01:14:05 -07:00
John Bender
cdc0f139ce
tests for nested pages/query params
2011-04-12 01:05:36 -07:00
John Bender
8d3dc2cbc2
query param href/actions require absolute path prefixes when no relative path information is contained in the hash
2011-04-12 00:22:42 -07:00
John Bender
193762da19
tests for handling query params in makeAbsolute path helper, moved path helper tests to helper test file
2011-04-11 23:42:01 -07:00
John Bender
5158c6f7cb
comment correction in test
2011-04-06 13:33:32 -07:00
John Bender
ceed56fb2a
test added for checkbox check and uncheck firing change
2011-04-06 13:31:06 -07:00
John Bender
b1da5f0d06
added tests to make sure links that reference the pages they are defined within don't transition Fixes #1360
2011-04-04 23:47:16 -07:00
John Bender
280394757b
fixed titles in the checkbox radio tests
2011-04-01 23:43:59 -07:00
John Bender
4bea7c41b8
fixed broken open page call to prevent redirect in tests
2011-04-01 22:55:55 -07:00
John Bender
9280fb467f
whitespace in listview tests
2011-04-01 22:55:55 -07:00
John Bender
3a85ef61ac
removed global pre test setup that used QUnit.start :(, and fixed spurious test failures from changePage being fired by the library after it had been redefined in the tests
2011-04-01 02:11:15 -07:00
John Bender
f63b1bf911
moved page title tests to sequence to stabalize their behavior
2011-03-31 22:47:40 -07:00
John Bender
89775d233a
whitespace in navigation core tests and fixtures page
2011-03-31 22:18:54 -07:00
scottjehl
96897b0285
listview tests now passing.
2011-03-31 18:07:08 -04:00
scottjehl
9826bf7b4b
removed and edited some tests that no longer apply to listviews
2011-03-31 17:51:07 -04:00
scottjehl
776e23ee95
simplified test, but in general, the nav test suite feels brittle. Maybe because of our usage of async tests. Anyway, I was able to get all tests to pass once.
2011-03-31 13:38:49 -04:00
scottjehl
b18756eceb
fixed the last breaking pages unit test
2011-03-31 13:19:51 -04:00
scottjehl
d8aac11a4f
merging unit test addtions for page titles
2011-03-31 12:56:30 -04:00
John Bender
6d37ad6bbb
added addtional test to cover issue 1305
2011-03-30 01:08:15 -07:00
John Bender
215aded824
fixed path detection for when linking from embedded pages to file paths Fixes #1305
2011-03-30 01:08:15 -07:00
John Bender
32f1264491
corrected poor async start order
2011-03-30 01:08:15 -07:00
Kin Blas
f80d286ecb
Fixing tap/taphold tests that broke when fastclick/vmouse changes landed.
2011-03-29 12:01:58 -07:00
Kin Blas
9e40d14b28
Fixing unit test bustage. The fastclick branch landed so these tests need to be updated to fire off "click" versus "touchend" or "mouesup".
2011-03-29 09:32:10 -07:00
John Bender
7b4842eabc
test for dialogs within dialogs
2011-03-28 00:41:33 -07:00
scottjehl
d66cd439f0
removed a console log
2011-03-27 12:46:51 -04:00
scottjehl
450099213b
fixed up the unit test for fieldcontain with namespacing and similar JS links in head.
2011-03-27 12:01:36 -04:00
BradBroulik
1f5259a7ee
Added code coverage for fieldcontain module.
2011-03-27 23:54:24 +08:00
John Bender
73a39ab7ec
fixed poorly chosen selector in test and moved generated anchor markup into hidden page
2011-03-27 02:07:31 -04:00
scottjehl
fd5b3210e4
used :hidden selector instead
2011-03-27 00:48:30 -04:00
scottjehl
0780e40a69
straightened out some failing tests so they match the new markup conventions
2011-03-26 23:47:14 -04:00
scottjehl
a496bc3bb7
used data-rel to find back buttons
2011-03-26 22:34:36 -04:00
scottjehl
bed18f1bc9
updated to latest, adjusted first test to click the anchor
2011-03-26 22:33:33 -04:00
scottjehl
de21e9e628
trigger click on the link instead
2011-03-26 21:31:14 -04:00
John Bender
6965d4d24c
removed console from test helper
2011-03-26 17:29:58 -07:00
John Bender
c3854fe8ca
added simple helper to rerun qunit tests
2011-03-26 17:27:33 -07:00
scottjehl
b950f1c319
changed to just call dialog close method
2011-03-26 15:01:25 -04:00
scottjehl
e8cee23744
major simplification of jqmData method, while adding new methods for jqmRemoveData, and also their $-namepaced utility methods, including $.jqmHasData. Commit includes 20 new unit tests included to test compatibility with jQuery core's data methods, and docs are updated as well.
2011-03-26 14:14:02 -04:00
scottjehl
963840a3b0
moved some selectors over to :jqmData()
2011-03-26 10:18:32 -04:00
John Bender
caedd81cfd
give swipe event triggers a 100ms buffer to allow for async sequences
2011-03-26 00:48:41 -07:00
John Bender
c7ed33cfeb
increase swipe check timout to allow for test browser speed
2011-03-25 23:59:57 -07:00
John Bender
62a8a4039a
stabilized event tests a bit more
2011-03-25 23:45:22 -07:00
John Bender
bf5d09cf9c
small fixs for linux chrome tests
2011-03-25 22:55:25 -07:00
John Bender
14f43ace9b
fix for select tests after default to native
2011-03-25 21:37:45 -07:00
John Bender
0ed68525ed
fixed array comparison tests to test single element
2011-03-25 18:40:55 -07:00
John Bender
143fd264d2
fixed mobile init bind firing in another test
2011-03-25 18:27:35 -07:00
scottjehl
497344c618
used mobile.ns in the test
2011-03-25 18:21:10 -04:00
scottjehl
7503f62a10
changed our two new custom data helper names to jqmData() and :jqmData()
2011-03-25 17:50:40 -04:00
John Bender
7d3642f3ab
fixed init tests for ie
2011-03-24 09:46:13 -07:00
John Bender
018609fa32
removed mass of duplication from core of functionality that was moved to init, fixed init tests
2011-03-22 00:26:24 -07:00
John Bender
7df9e245f4
test namespace additions and type fix for core
2011-03-21 23:36:32 -07:00
John Bender
e236484559
fixed checkbox radio refresh selector
2011-03-21 23:17:46 -07:00
John Bender
2d56e5c2fb
whitespace in event_core tests
2011-03-21 01:40:31 -07:00
John Bender
5d75e3dfa7
fixed event tests
2011-03-21 01:27:50 -07:00
John Bender
e1098e06de
fixed widget tests by including the library as a whole
2011-03-19 23:14:46 -07:00
John Bender
ff23f63881
moved the widget tests back under an immediate function
2011-03-19 23:12:55 -07:00
John Bender
3316e559b3
fixed order dependent tests in listview
2011-03-19 22:44:35 -07:00
John Bender
45183c186c
fixed listview tests, refactor still necessary for the last test selectors
2011-03-19 22:29:53 -07:00
John Bender
4fca8e6d21
removed console
2011-03-17 00:15:29 -07:00
John Bender
2202b0d76c
fixed some listview tests, still some that are hanging on complex selectors
2011-03-17 00:14:32 -07:00
John Bender
fe754ed298
fixed first three tests to be independent of order
2011-03-16 23:00:02 -07:00
John Bender
4959548698
fixed init core tests to represent init functionality
2011-03-16 22:31:22 -07:00
John Bender
5349e5876b
fixed some failing listview tests
2011-03-16 00:07:26 -07:00
John Bender
4126fbd29b
fixed last failing tests after merge in init tests
2011-03-15 23:58:22 -07:00
John Bender
63e8f6bfcb
resolved merge conflicts and fixed 2 tests
2011-03-15 23:57:17 -07:00
John Bender
b56626fba1
added type attribute regex tests for the different ways that browsers serialize html
2011-03-14 23:50:20 -07:00
John Bender
cd654a4eae
moved page unit tests back under anon function
2011-03-14 23:50:20 -07:00
ray58750034
a4dc5888d0
add gridlayout test
2011-03-15 07:27:11 +08:00
John Bender
8943287c75
Revert "fixed failing slider tests in firefox by adding data-type to type=range inputs"
...
This reverts commit 6ca79aceb4 .
2011-03-14 08:22:44 -07:00
John Bender
6ca79aceb4
fixed failing slider tests in firefox by adding data-type to type=range inputs
2011-03-13 23:40:03 -07:00
John Bender
c629e34e74
fix for broken init test and some whitespace
2011-03-13 23:09:32 -07:00
scottjehl
fc0cd38c4e
improved test for meta injects
2011-03-14 00:20:26 -04:00
scottjehl
f69c98caf0
gradeA adjusted to IE7 and up rather than 6 and up ( this still includes Windows Phone 7). Unit test adjusted to match
2011-03-14 00:20:26 -04:00
scottjehl
d08ff23765
fixed up path.clean test so it passes
2011-03-14 00:20:26 -04:00
scottjehl
4c199a5ce6
added unit test for IE version check in Mobile ( doesn't use UA detection like jQuery Core's)
2011-03-14 00:20:26 -04:00
scottjehl
b2ea5e99e5
added comment about missing meta tag
2011-03-14 00:20:26 -04:00
scottjehl
f6a2bd46ec
added a unit test for checking if meta viewport tag is not appended if one already exists.
2011-03-14 00:20:26 -04:00
scottjehl
b2222388d7
updated to latest
2011-03-14 00:20:26 -04:00
scottjehl
0d9627d54e
Added viewport meta elements to the markup of every template and removed the metaViewportContent option from code and docs. IE does not support generated viewport tags.
2011-03-14 00:20:23 -04:00
John Bender
648be47a07
reset location hash in select menu tests
2011-03-12 22:55:48 -08:00
John Bender
e3000e2dec
added failing test for on screen custom select menu rendering
2011-03-12 22:52:44 -08:00
John Bender
129b586666
tests for url root in params / path.clean Fixes #1039
2011-03-12 14:37:45 -08:00
John Bender
ccea5be445
removed console log
2011-03-12 00:29:26 -08:00
John Bender
94ade0f86e
fixed failing data-url regex, bizarri difference in behaviour with Regex objects and literals
2011-03-12 00:10:40 -08:00
John Bender
a33f777952
fixed core unit tests for ns
2011-03-11 22:50:26 -08:00
John Bender
0aaab77e2b
test for forward button dialog skipping
2011-03-10 00:13:53 -08:00
scottjehl
0bf5ce8a37
set unit test pages namespace to "nstest-"
2011-03-09 23:16:48 -05:00
scottjehl
e46da87031
namespaced the selectors
2011-03-09 22:41:59 -05:00