Commit Graph

3606 Commits

Author SHA1 Message Date
Eric Wong
e50615ae01 Bug 767755: Re-implement IsPrimaryForNode() using an Accessible::mFlags bit. r=surkov 2012-09-03 23:06:10 -07:00
Randell Jesup
65539ef89c Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg 2012-09-01 22:35:17 -04:00
Koosha Khajeh Moogahi
be9822e21a Bug 786582 - Rename AccFilters.h/cpp files to Filters.h/cpp. r=surkov
--HG--
rename : accessible/src/base/AccFilters.cpp => accessible/src/base/Filters.cpp
rename : accessible/src/base/AccFilters.h => accessible/src/base/Filters.h
extra : rebase_source : 97d504cb06bb924f42379f011f889f151e255c77
2012-08-31 06:36:41 -04:00
Andrew Quartey
8fe513d053 Bug 772782 - Add extra PresShell check in DocAccessible creation. r=surkov 2012-08-29 21:50:36 -04:00
Trevor Saunders
0ccbb9082a bug 767860 - stop using nsIDOMHTMLInputElement in a11y r=mounir, surkov 2012-06-03 07:36:51 -04:00
Trevor Saunders
9e1b56e566 bug 767843 - stop using nsIDOMHTMLOptionElement in a11y r=surkov 2012-06-02 15:41:29 -04:00
Alexander Surkov
99ec2ab9a0 Bug 761853 - ARIA grid with rowgroup breaks table row/col counting and indices, r=tbsaunde
--HG--
rename : accessible/src/base/filters.cpp => accessible/src/base/AccFilters.cpp
rename : accessible/src/base/filters.h => accessible/src/base/AccFilters.h
2012-08-28 22:13:59 +09:00
Ms2ger
5f9f66dfe4 Backed out changeset 08e41d18e1f8 for a case-folding collision. 2012-08-28 10:24:30 +02:00
Alexander Surkov
14c8d8da8f Bug 761853 - ARIA grid with rowgroup breaks table row/col counting and indices, r=tbsaunde
--HG--
rename : accessible/src/base/filters.cpp => accessible/src/base/Filters.cpp
rename : accessible/src/base/filters.h => accessible/src/base/Filters.h
2012-08-28 16:33:01 +09:00
Eitan Isaacson
646b724603 Bug 785510 - Add accessible retreival service to utils, and remove it as global from modules. r=davidb 2012-08-26 20:14:42 -07:00
Hub Figuière
41cf08644d Bug 668469 - Part 2: use InteractiveState() instead of NativeInteractiveState(). r=surkov
--HG--
extra : rebase_source : 0da87d1ad720782293d5091537a2edc2f6d07c46
2012-08-24 23:48:41 -04:00
David Zbarsky
0ce914d650 [Bug 785454] Remove nsPresShell::GetFrameForPoint r=smaug 2012-08-25 00:09:48 -04:00
Andrew McCreight
c063a3e54c Bug 750570, part 4 - Switch most native CC classes to use the purple buffer. r=smaug
This patch actually converts over most of the existing native CC classes
to use the participant. This is done by converting them to use
the newly generalized nsCycleCollectingAutoRefCnt instead of their usual
ref count.

This is mostly a matter of defining new macros defining AddRef() and Release()
for native CC classes with the CC ref count.

nsTimeout is left as a legacy native CC class because it is a weird class,
but hopefully eventually it too can be converted over.  See bug 774874.
2012-08-24 09:50:06 -07:00
Nathan Froyd
b1151f38c9 Bug 785226 - fix -Wenum-compare warning spam in accessible/src/base/RoleAsserts.cpp; r=davidb 2012-08-23 17:00:58 -04:00
Hubert Figuière
22231ed617 Bug 668469 - Don't ignore focusable elements. r=surkov 2012-08-22 08:08:43 -07:00
Hubert Figuière
f19368a57f Bug 772060 - Part 1: Implement accessibilityArrayAttributeCount for mozPaneAccessible. r=surkov,tbsaunde 2012-07-11 17:29:19 -07:00
Eitan Isaacson
6561d9d600 Revert "Bug 782320 - Use names for pushbuttons. r=davidb" 2012-08-24 09:52:24 -04:00
Ms2ger
e7364eb3f0 Revert to changeset e048ac9eb279 for bustage. 2012-08-24 15:44:54 +02:00
Hubert Figuière
b3d5f81157 Bug 668469 - Don't ignore focusable elements. r=surkov
--HG--
extra : rebase_source : 79f3e0057204647187366bad8fe3c72464e3640b
2012-08-22 08:08:43 -07:00
Hubert Figuière
9fe0c8d9b9 Bug 772060 - Part 1: Implement accessibilityArrayAttributeCount for mozPaneAccessible. r=surkov,tbsaunde
--HG--
extra : rebase_source : 4d9d87b9ffebdec3844a661a81e187a9bc130ef7
2012-07-11 17:29:19 -07:00
Eitan Isaacson
075a360ddb Bug 785076 - Work around touch emulation timestamp issue. r=davidb 2012-08-23 11:33:10 -04:00
Ehsan Akhgari
845651448b Bug 579517 - Part 5: Add missing StandardInteger.h #includes where needed; r=bsmedberg
Landing on a CLOSED TREE
2012-08-08 17:08:17 -04:00
Ehsan Akhgari
e368dc9c85 Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script.  Here's the source of the script for
future reference:

function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
       ! -wholename "*security/nss*" \
       ! -wholename "*/.hg*" \
       ! -wholename "obj-ff-dbg*" \
       ! -name nsXPCOMCID.h \
       ! -name prtypes.h \
         -type f \
      \( -iname "*.cpp" \
         -o -iname "*.h" \
         -o -iname "*.c" \
         -o -iname "*.cc" \
         -o -iname "*.idl" \
         -o -iname "*.ipdl" \
         -o -iname "*.ipdlh" \
         -o -iname "*.mm" \) | \
    xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}

convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t

convert PRIntn int
convert PRUintn unsigned

convert PRSize size_t

convert PROffset32 int32_t
convert PROffset64 int64_t

convert PRPtrdiff ptrdiff_t

convert PRFloat64 double
2012-08-22 11:56:38 -04:00
Eitan Isaacson
c749e951c5 Bug 784162 - Add "touches" field to accessfu gesture events in Android. r=marcoz 2012-08-20 18:29:22 -04:00
Eitan Isaacson
51311e5635 Bug 773749 - Add Jelly Bean support to AccessFu. r=davidb 2012-08-20 18:29:22 -04:00
Phil Ringnalda
4a25565b93 Back out fb49a2f819ad (bug 766112) for destroying the a11y village rather than saving it, CLOSED TREE 2012-08-20 14:25:30 -07:00
Trevor Saunders
06aee59206 bug 766112 - add logging for orange test rs=davidb 2012-08-20 15:31:19 -04:00
Aryeh Gregor
063b3975db Bug 776481 - Don't try returning nsresult in place of bool (accessible/); r=tbsaunde 2012-08-14 12:10:42 +03:00
Eitan Isaacson
27eced7e82 Bug 780350 - Support gesture scrolling and pages. r=davidb 2012-08-17 15:49:34 -07:00
Eitan Isaacson
6e6849c74c Bug 780350 - Introduce TouchAdapter and add some gesture support. r=davidb 2012-08-17 15:49:34 -07:00
Eitan Isaacson
ebc122e4cd Bug 783084 - Activate AccessFu when screen reader is enabled in B2G. r=davidb 2012-08-17 15:49:34 -07:00
Eitan Isaacson
6b32a462f2 Bug 782320 - Use names for pushbuttons. r=davidb 2012-08-15 13:40:12 -07:00
Eitan Isaacson
8066501cee Bug 782317 - Change platform conditionals for Android Firefox to "mobile/android". r=davidb 2012-08-15 13:40:12 -07:00
Eitan Isaacson
99548dc1ec Bug 782316 - Removed HOME and END keys from vc controller. r=davidb 2012-08-15 13:40:11 -07:00
Aryeh Gregor
4e199a1679 Bug 780618 - Move all error codes to nsError.h; r=ehsan 2012-07-27 17:03:27 +03:00
Andrew Quartey
36a70a1f7d Bug 762897 - Implement UIA_AriaPropertiesPropertyId r=tbsaunde 2012-08-10 16:10:18 -04:00
Ryan VanderMeulen
15cb4b33b4 Backout 9d4d0dc404b8 (bug 767754) for Windows m-oth leaks. 2012-08-09 10:30:01 -04:00
Xi Yang
8a46f8c59e bug 767754 - move application accessible life cycle logic to nsAccessibilityService r=tbsaund 2012-08-09 00:59:00 -04:00
Ms2ger
94bf1722ed Bug 743573 - Fix a number of build warnings in dom/; r=mounir 2012-08-07 09:06:29 +02:00
David Zbarsky
03039446fa [Bug 780428] Don't include nsIFrame.h in places where it's not necessary r=roc 2012-08-05 23:00:56 -04:00
Ms2ger
c75eefb90d Bug 716822 - Move attributes and methods on nsIDOMNSEvent to nsIDOMEvent; r=smaug 2012-08-04 09:44:00 +02:00
Mike Hommey
70d7c821af Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted 2012-08-04 20:26:44 +02:00
Ed Morley
f4181983a1 Revert inbound to 3d5d1daa2505 to stop OS X M5 failures (backout not clean/could have been a bad merge) on a CLOSED TREE 2012-08-04 18:05:15 +01:00
Ms2ger
27245512cd Bug 716822 - Move attributes and methods on nsIDOMNSEvent to nsIDOMEvent; r=smaug 2012-08-04 09:44:00 +02:00
Ed Morley
6829dfe6eb Bug 733848 - Temporarily disable part of markuprules.xml for frequent intermittent failures; r=surkov 2012-08-03 11:28:12 +01:00
Cameron McCormack
7670328c6c Bug 655877 - Part 16: Treat all values of display other than 'none' as 'inline' in SVG text frames. r=roc 2012-08-02 21:38:51 +10:00
Aryeh Gregor
e780171a3d Bug 779091 - Make Accessible::Init() infallible; r=surkov 2012-07-27 16:53:02 +03:00
David Zbarsky
401fe61b28 [Bug 779386] Clean up some includes in a11y r=surkov 2012-08-01 11:31:10 -07:00
Trevor Saunders
3448a4f821 bug 778666 - crash in DocAccessible::DocAccessible() r=surkov 2012-07-31 12:59:04 -04:00
Neil Deakin
5ae1b87a02 Bug 582719, use nsQueryFrame for menus and popups rather than GetType, r=neil 2012-07-30 20:43:28 -04:00