Matt Woodrow
|
3fb0e93449
|
Bug 781053 - Part 2 - Trigger empty transactions when an animated image in an ImageLayer changes frame. r=roc
|
2012-09-25 08:31:30 +12:00 |
|
Matt Woodrow
|
bc48b0711b
|
Bug 539356 - Avoid some causes of unnecessary painting. r=roc
|
2012-09-26 11:59:56 +12:00 |
|
Matt Woodrow
|
5f32437ca2
|
Bug 539356 - Add an option for frames to invalid just a rect instead of the frame bounds. r=roc
|
2012-08-29 17:48:45 +12:00 |
|
Matt Woodrow
|
2478cd23a6
|
Bug 769922 - Implement nsDisplayAltFeedback, since it can draw outside of the frame's overflow rect. r=roc
|
2012-08-29 17:48:44 +12:00 |
|
Matt Woodrow
|
79eed389a6
|
Bug 539356 - Part 27 - Make nsImageFrame's overflow include the AltFeedback image if it will use one. r=roc
|
2012-08-29 17:48:44 +12:00 |
|
Matt Woodrow
|
958ce7d98d
|
Bug 539356 - Part 9c - Remove old invalidation code. r=bz
|
2012-08-29 17:39:31 +12:00 |
|
Ed Morley
|
c863356300
|
Revert mozilla-inbound to e4dd1fa6d222 for crashes and test failures on a CLOSED TREE
|
2012-09-27 16:34:46 +01:00 |
|
Matt Woodrow
|
8b36b9562b
|
Bug 781053 - Part 2 - Trigger empty transactions when an animated image in an ImageLayer changes frame. r=roc
|
2012-09-25 08:31:30 +12:00 |
|
Matt Woodrow
|
696b0ccb7c
|
Bug 539356 - Avoid some causes of unnecessary painting. r=roc
|
2012-09-26 11:59:56 +12:00 |
|
Matt Woodrow
|
7d7084a2d1
|
Bug 539356 - Add an option for frames to invalid just a rect instead of the frame bounds. r=roc
|
2012-08-29 17:48:45 +12:00 |
|
Matt Woodrow
|
68cc123853
|
Bug 769922 - Implement nsDisplayAltFeedback, since it can draw outside of the frame's overflow rect. r=roc
|
2012-08-29 17:48:44 +12:00 |
|
Matt Woodrow
|
261f7fa26d
|
Bug 539356 - Part 27 - Make nsImageFrame's overflow include the AltFeedback image if it will use one. r=roc
|
2012-08-29 17:48:44 +12:00 |
|
Matt Woodrow
|
c73c0db2f1
|
Bug 539356 - Part 9 - Implement DLBI. r=roc,bz,jwatt
|
2012-08-29 17:38:58 +12:00 |
|
Phil Ringnalda
|
dd13abdce5
|
Back out 85d6cbd01d39, 56fc051c1932, a2ad17b87332 (bug 781053) for OS X debug assertions and crashes
--HG--
extra : rebase_source : ab24a2f8e9eddcf33ea39344abb7afbf400bf6e0
|
2012-09-24 21:23:05 -07:00 |
|
Matt Woodrow
|
35030f54e2
|
Bug 781053 - Part 2 - Trigger empty transactions when an animated image in an ImageLayer changes frame. r=roc
|
2012-09-25 08:31:30 +12:00 |
|
Chris Lord
|
8a10cc33bd
|
Bug 788202 - Add optional subdocument traversal to nsIFrame::List. r=bz
Add subdocument frame traversal to nsIFrame::List, controlled via an optional
flag.
|
2012-09-19 15:36:35 +01:00 |
|
Chris Lord
|
0e8485ff4d
|
Backout bug 788202 for build failures.
|
2012-09-19 14:05:26 +01:00 |
|
Chris Lord
|
ca82e0a1a5
|
Bug 788202 - Add optional subdocument traversal to nsIFrame::List. r=bz
Add subdocument frame traversal to nsIFrame::List, controlled via an optional
flag.
|
2012-09-19 12:39:53 +01:00 |
|
Matt Woodrow
|
ab9f5929bd
|
Bug 788044 - Make inactive layer subtrees relative to the ContainerLayer, not the reference frame. r=roc
|
2012-09-17 10:25:33 +12:00 |
|
Randell Jesup
|
eedf93a21d
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
|
Josh Matthews
|
4716a41074
|
Bug 722861 - Add privacy information to image requests, and use a separate cache for private requests. r=joe
|
2012-06-26 00:20:12 -04:00 |
|
Josh Matthews
|
22c30bb0c4
|
Back out bug 722861.
|
2012-08-27 15:31:29 -04:00 |
|
Josh Matthews
|
1de8cc6897
|
Bug 722861 - Add privacy information to image requests, and use a separate cache for private requests. r=joe
|
2012-06-26 00:20:12 -04:00 |
|
Ehsan Akhgari
|
0fd9123eac
|
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 |
|
Nicolas Silva
|
047b99ba78
|
Bug 782372 - Splits ImageLayers.h into ImageLayers.h ImageContainer.h and ImageTypes.h, r=bgirard
|
2012-08-19 15:33:25 -04:00 |
|
Aryeh Gregor
|
0923bf00ef
|
Bug 780618 - Move all error codes to nsError.h; r=ehsan
|
2012-07-27 17:03:27 +03:00 |
|
Ms2ger
|
3f950b5744
|
Bug 780387 - Part b: Stop using PRIntn; r=bsmedberg
|
2012-08-09 09:09:40 +02:00 |
|
David Zbarsky
|
a2c20d2493
|
Bug 706179 Part 3: Turn on the use of scaling for layers in FrameLayerBuilder r=mattwoodrow
|
2012-08-03 14:29:22 -07:00 |
|
David Zbarsky
|
1e9fefd64e
|
Bug 706179 Part 2: Add a BaseTransform and scaling to layers, r=roc, cjones
|
2012-07-30 19:20:00 -07:00 |
|
Mark Finkle
|
70a01196ec
|
Backout 169ff207ed19, a34baed70c1b, f9ccdd490bd7, 39550ed860e6, 2194a2dd66b2, 908eb2e26843, a76e0a267f26 due to mobile viewport bustage (bug 778580)
|
2012-07-30 14:36:12 -04:00 |
|
Aryeh Gregor
|
e806eeab4f
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
David Zbarsky
|
9bf8a70491
|
Bug 706179 Part 2: Add a BaseTransform to layers r=roc
|
2012-07-27 13:23:45 -07:00 |
|
Ed Morley
|
be8bf4beae
|
Backout 1244b8a8e57a (bug 755084), 32d16d0f87c9 (bug 706179), 8548e016d4a9 (bug 768440), 697f5b87eae9 (bug 768440), 808fc2bd4e8c (bug 755084), 54b1484cd125 (bug 755084), 876726b632c0 (bug 706179) for xul android R3 failures
|
2012-07-25 16:37:04 +01:00 |
|
David Zbarsky
|
d29cc0cf63
|
Bug 706179 Part 2: Add a BaseTransform to layers to return the layer's transform without scaling applied r=roc
|
2012-07-25 01:48:10 -07:00 |
|
Ehsan Akhgari
|
5e6974df88
|
Backout changeset f568fc280fb0 (bug 539356) because of performance and correctness regressions
|
2012-07-03 20:24:55 -04:00 |
|
Ehsan Akhgari
|
e31da580cf
|
Backout changeset b59fde84e97f (bug 539356) because of performance and correctness regressions
|
2012-07-03 20:08:35 -04:00 |
|
Ehsan Akhgari
|
79d797ac12
|
Backout changeset c862a7dd7851 (bug 769922) because DLBI is being backed out
|
2012-07-03 19:39:13 -04:00 |
|
Matt Woodrow
|
0ec85bf023
|
Bug 769922 - Add nsDisplayAltFeedback so that alt feedback images get invalidated correclty. r=roc
|
2012-07-03 13:03:40 +12:00 |
|
Matt Woodrow
|
c37ed2f466
|
Bug 539356 - Part 27 - Make nsImageFrame's overflow include the AltFeedback image if it will use one. r=roc
|
2012-06-30 15:06:13 +12:00 |
|
Matt Woodrow
|
cbd39105d9
|
Bug 539356 - Part 9 - Implement DLBI. r=roc,bz,jwatt
|
2012-06-30 15:06:11 +12:00 |
|
Jonathan Watt
|
6380335603
|
Bug 767388 - Kill NS_DEBUG. r=bz.
--HG--
extra : rebase_source : d045208a26345712dbb4628c973c616cd9504f28
|
2012-06-25 20:59:42 +01:00 |
|
Trevor Saunders
|
3b1f9183dc
|
bug 759033 - nsAccessible -> Accessible and nsAccessibleWrap -> AccessibleWrap r=surkov
--HG--
rename : accessible/src/atk/nsAccessibleWrap.cpp => accessible/src/atk/AccessibleWrap.cpp
rename : accessible/src/atk/nsAccessibleWrap.h => accessible/src/atk/AccessibleWrap.h
rename : accessible/src/base/nsAccessible.cpp => accessible/src/generic/Accessible.cpp
rename : accessible/src/base/nsAccessible.h => accessible/src/generic/Accessible.h
rename : accessible/src/mac/nsAccessibleWrap.h => accessible/src/mac/AccessibleWrap.h
rename : accessible/src/mac/nsAccessibleWrap.mm => accessible/src/mac/AccessibleWrap.mm
rename : accessible/src/msaa/nsAccessibleWrap.cpp => accessible/src/msaa/AccessibleWrap.cpp
rename : accessible/src/msaa/nsAccessibleWrap.h => accessible/src/msaa/AccessibleWrap.h
rename : accessible/src/other/nsAccessibleWrap.cpp => accessible/src/other/AccessibleWrap.cpp
rename : accessible/src/other/nsAccessibleWrap.h => accessible/src/other/AccessibleWrap.h
|
2012-05-28 21:18:45 -04:00 |
|
Ed Morley
|
c5acb642c1
|
Merge mozilla-central to mozilla-inbound
|
2012-05-21 13:19:38 +01:00 |
|
Gervase Markham
|
ca171eec44
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
L. David Baron
|
54995e2a8e
|
Remove width determination parameters from font inflation methods. (Bug 747720, patch 5) r=roc
These are no longer needed since we're getting the width from the
nsFontInflationData.
|
2012-05-20 22:18:28 -07:00 |
|
Adam Dane [:hobophobe]
|
7f04cb4204
|
Bug 733553 - Allow multipart image streams to cope with stream changes. r=joe
|
2012-05-19 14:32:37 -05:00 |
|
Ryan VanderMeulen
|
bcfe82d03b
|
Backout bug 733553 due to mochitest orange.
|
2012-05-19 12:10:26 -04:00 |
|
Adam Dane [:hobophobe]
|
2fb449e6aa
|
Bug 733553 - Allow multipart image streams to cope with stream changes. r=joe
|
2012-05-08 21:35:32 -05:00 |
|
Joe Drew
|
756646f15d
|
Back out changeset 501d38d3892c (Bug 733553) for causing crashes in xpcshell tests.
|
2012-05-08 21:59:30 -04:00 |
|
Adam Dane [:hobophobe]
|
e1da62aa08
|
Bug 733553 - Allow multipart image streams to cope with stream changes. r=joe
--HG--
extra : rebase_source : 21ebc85f26fcbc4a4a27387d1ec5007c0886c386
|
2012-05-08 16:19:01 -05:00 |
|