Matt Woodrow
|
638b4002cb
|
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
|
a382cc1373
|
Bug 539356 - Avoid some causes of unnecessary painting. r=roc
|
2012-09-26 11:59:56 +12:00 |
|
Matt Woodrow
|
daef8103fd
|
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
|
26e7634f2d
|
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
|
d5505976c0
|
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
|
cee1aa3599
|
Bug 539356 - Part 9c - Remove old invalidation code. r=bz
|
2012-08-29 17:39:31 +12:00 |
|
Ed Morley
|
aba3a8f5ef
|
Revert mozilla-inbound to e4dd1fa6d222 for crashes and test failures on a CLOSED TREE
|
2012-09-27 16:34:46 +01:00 |
|
Matt Woodrow
|
53908eb696
|
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
|
58294c1b55
|
Bug 539356 - Avoid some causes of unnecessary painting. r=roc
|
2012-09-26 11:59:56 +12:00 |
|
Matt Woodrow
|
27184c37d8
|
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
|
3a8db38bc7
|
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
|
742de4dfd9
|
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
|
4d096475d2
|
Bug 539356 - Part 9 - Implement DLBI. r=roc,bz,jwatt
|
2012-08-29 17:38:58 +12:00 |
|
Phil Ringnalda
|
8166187203
|
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
|
8570336fe7
|
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
|
b38c2c5cad
|
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
|
d5bcfa09f8
|
Backout bug 788202 for build failures.
|
2012-09-19 14:05:26 +01:00 |
|
Chris Lord
|
f89f65818b
|
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
|
ad9a9edc59
|
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
|
65539ef89c
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
|
Josh Matthews
|
1346c0db1c
|
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
|
1210ea94dd
|
Back out bug 722861.
|
2012-08-27 15:31:29 -04:00 |
|
Josh Matthews
|
17c6b7c738
|
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
|
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 |
|
Nicolas Silva
|
75542595f3
|
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
|
4e199a1679
|
Bug 780618 - Move all error codes to nsError.h; r=ehsan
|
2012-07-27 17:03:27 +03:00 |
|
Ms2ger
|
75ab7efb95
|
Bug 780387 - Part b: Stop using PRIntn; r=bsmedberg
|
2012-08-09 09:09:40 +02:00 |
|
David Zbarsky
|
aaa7d5ced9
|
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
|
c83e9b7631
|
Bug 706179 Part 2: Add a BaseTransform and scaling to layers, r=roc, cjones
|
2012-07-30 19:20:00 -07:00 |
|
Mark Finkle
|
ecceaf8977
|
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
|
d0ad5a7d0c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
David Zbarsky
|
3a15cfbf6b
|
Bug 706179 Part 2: Add a BaseTransform to layers r=roc
|
2012-07-27 13:23:45 -07:00 |
|
Ed Morley
|
3ed23376d4
|
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
|
6b4c02cd9f
|
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
|
cf18ee9122
|
Backout changeset f568fc280fb0 (bug 539356) because of performance and correctness regressions
|
2012-07-03 20:24:55 -04:00 |
|
Ehsan Akhgari
|
8861f4f48e
|
Backout changeset b59fde84e97f (bug 539356) because of performance and correctness regressions
|
2012-07-03 20:08:35 -04:00 |
|
Ehsan Akhgari
|
c9e2c1ae49
|
Backout changeset c862a7dd7851 (bug 769922) because DLBI is being backed out
|
2012-07-03 19:39:13 -04:00 |
|
Matt Woodrow
|
2dcb0e79f3
|
Bug 769922 - Add nsDisplayAltFeedback so that alt feedback images get invalidated correclty. r=roc
|
2012-07-03 13:03:40 +12:00 |
|
Matt Woodrow
|
d9422f4546
|
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
|
31125260ee
|
Bug 539356 - Part 9 - Implement DLBI. r=roc,bz,jwatt
|
2012-06-30 15:06:11 +12:00 |
|
Jonathan Watt
|
970e60a384
|
Bug 767388 - Kill NS_DEBUG. r=bz.
--HG--
extra : rebase_source : d045208a26345712dbb4628c973c616cd9504f28
|
2012-06-25 20:59:42 +01:00 |
|
Trevor Saunders
|
5d33ad118a
|
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
|
83427f0fe0
|
Merge mozilla-central to mozilla-inbound
|
2012-05-21 13:19:38 +01:00 |
|
Gervase Markham
|
82ff7027aa
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
L. David Baron
|
6b3b8f9533
|
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]
|
ce9676ce34
|
Bug 733553 - Allow multipart image streams to cope with stream changes. r=joe
|
2012-05-19 14:32:37 -05:00 |
|
Ryan VanderMeulen
|
5e78d60411
|
Backout bug 733553 due to mochitest orange.
|
2012-05-19 12:10:26 -04:00 |
|
Adam Dane [:hobophobe]
|
d2e80641a8
|
Bug 733553 - Allow multipart image streams to cope with stream changes. r=joe
|
2012-05-08 21:35:32 -05:00 |
|
Joe Drew
|
adeb871cdd
|
Back out changeset 501d38d3892c (Bug 733553) for causing crashes in xpcshell tests.
|
2012-05-08 21:59:30 -04:00 |
|
Adam Dane [:hobophobe]
|
f72c3770d4
|
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 |
|