Aryeh Gregor
|
659b807986
|
Bug 859817 - Remove implicit conversions from raw pointer to already_AddRefed; r=Ms2ger
|
2013-04-22 14:15:59 +03:00 |
|
Boris Zbarsky
|
aa6fd1d340
|
Bug 607441 part 1. Don't disable SVG presentational attributes when page styles are disabled. r=dbaron,jwatt
|
2013-03-27 22:47:25 -04:00 |
|
David Zbarsky
|
2c3499b66c
|
[Bug 847110] Fix up includes in layout/style r=dbaron
|
2013-03-02 19:31:48 -05:00 |
|
Nicholas Nethercote
|
df43bc1128
|
Bug 824397 - Use NS_ENSURE_{TRUE,FALSE,SUCCESS}_VOID(foo) instead of NS_ENSURE_{TRUE,FALSE,SUCCESS}(foo, ). r=derf.
|
2012-12-23 20:45:57 -08:00 |
|
L. David Baron
|
b76b368af6
|
Bug 813373, patch 4: fix printfs that crept in in patch 3.
|
2012-11-20 13:22:35 -08:00 |
|
L. David Baron
|
be38660c66
|
Bug 813373, patch 3: Make sure all style rules have non-empty List implementations. r=bzbarsky
|
2012-11-20 11:55:14 -08:00 |
|
Randell Jesup
|
eedf93a21d
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -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 |
|
Aryeh Gregor
|
0923bf00ef
|
Bug 780618 - Move all error codes to nsError.h; r=ehsan
|
2012-07-27 17:03:27 +03:00 |
|
David Zbarsky
|
d50e4a7565
|
[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
|
c6b094bee3
|
Bug 777306 - Remove NS_NewHTMLStyleSheet; r=dbaron
|
2012-08-04 09:44:01 +02:00 |
|
Ed Morley
|
bba173e66e
|
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
|
db59149c25
|
Bug 777306 - Remove NS_NewHTMLStyleSheet; r=dbaron
|
2012-08-04 09:44:01 +02:00 |
|
Aryeh Gregor
|
e806eeab4f
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Gervase Markham
|
ca171eec44
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Josh Matthews
|
50686229de
|
Bug 722853 - Derive private browsing status from docshell when assigning element states. r=dbaron
|
2012-03-30 02:16:22 -04:00 |
|
Ms2ger
|
25ce8453d2
|
Backout bug 722853 - changeset f40a17213344; r=orange
|
2012-03-26 18:41:19 +02:00 |
|
Josh Matthews
|
8d0288bee5
|
Bug 722853 - Derive private browsing status from docshell when assigning element states. r=dbaron
--HG--
extra : rebase_source : d59985b415ccafc4a9c8e8dbea9b69fa61602b8b
|
2012-02-21 09:57:09 -05:00 |
|
Nicholas Nethercote
|
726ecd352b
|
Bug 723799 - Use mallocSizeOf in the DOM memory reporters. r=mounir.
--HG--
extra : rebase_source : 2eb96d2f901bbe4cc1ff6dbccdec4dc4099b08fc
|
2012-02-01 13:58:01 -08:00 |
|
Nicholas Nethercote
|
587382cea2
|
Bug 705987 - Use mallocSizeOf in the layout memory reporters. r=khuey,bzbarsky
|
2011-12-08 21:01:52 -08:00 |
|
Ehsan Akhgari
|
2a602a5685
|
Bug 690892 - Replace PR_TRUE/PR_FALSE with true/false on mozilla-central; rs=dbaron
Landing on a CLOSED TREE
|
2011-10-17 10:59:28 -04:00 |
|
Michael Wu
|
d8e503c38b
|
Bug 675553 - Switch from PRBool to bool on a CLOSED TREE , r=bsmedberg,khuey,bz,cjones
--HG--
rename : tools/trace-malloc/bloatblame.c => tools/trace-malloc/bloatblame.cpp
|
2011-09-28 23:19:26 -07:00 |
|
Kyle Huey
|
03cf2fd98c
|
Bug 675641: Enumerate nsIStyleRuleProcessors in about:memory. r=bz
|
2011-08-01 14:25:20 -04:00 |
|
Mounir Lamouri
|
00b4aa4898
|
Bug 667887 - Implement nsMappedAttributes::SizeOf(). r=jst,bz
|
2011-07-19 09:42:14 -07:00 |
|
Mounir Lamouri
|
7e7c6831b6
|
Bug 668013 - Add nsHTMLStyleSheet::SizeOf(). r=bz
|
2011-07-19 09:40:18 -07:00 |
|
Ehsan Akhgari
|
17ab950e8e
|
Backout volkmar's push for breaking Windows builds
|
2011-07-20 15:49:16 -04:00 |
|
Mounir Lamouri
|
731f1f7323
|
Bug 667887 - Implement nsMappedAttributes::SizeOf(). r=jst,bz
|
2011-07-19 09:42:14 -07:00 |
|
Mounir Lamouri
|
411d52c1fe
|
Bug 668013 - Add nsHTMLStyleSheet::SizeOf(). r=bz
|
2011-07-19 09:40:18 -07:00 |
|
Ehsan Akhgari
|
ee5215c7a6
|
Revert to changeset e0ce7821fce1 because the latest push broke all of the builds DONTBUILD
|
2011-07-19 16:25:54 -04:00 |
|
Mounir Lamouri
|
42346e6d0b
|
Bug 667887 - Implement nsMappedAttributes::SizeOf(). r=jst,bz
|
2011-07-19 09:42:14 -07:00 |
|
Mounir Lamouri
|
3a70fea833
|
Bug 668013 - Add nsHTMLStyleSheet::SizeOf(). r=bz
|
2011-07-19 09:40:18 -07:00 |
|
Mounir Lamouri
|
b088e154d6
|
Backed out bug 669310, bug 668013, bug 667887 and bug 669886 due to build bustage.
|
2011-07-19 10:49:48 -07:00 |
|
Mounir Lamouri
|
2179f30023
|
Bug 667887 - Implement nsMappedAttributes::SizeOf(). r=jst,bz
|
2011-07-19 09:42:14 -07:00 |
|
Mounir Lamouri
|
79c9d3ee6f
|
Bug 668013 - Add nsHTMLStyleSheet::SizeOf(). r=bz
|
2011-07-19 09:40:18 -07:00 |
|
Ms2ger
|
e97c66dfd4
|
Bug 660604 - Remove nsIHTMLDocument::GetBodyContentExternal; r=jst
|
2011-06-02 14:56:46 +02:00 |
|
Boris Zbarsky
|
b63424b026
|
Bug 655549 and bug 645768. Rejigger the quirk table color rule to work more reliably. r=dbaron
|
2011-06-01 07:43:31 -04:00 |
|
David Zbarsky
|
5ecf0a2bd3
|
Bug 610305: decom nsEventStateManager r=smaug
|
2011-04-21 19:35:52 +02:00 |
|
Mounir Lamouri
|
b4cf8cd184
|
Backed out changeset c1a7c1bc1aeb due to busted build.
|
2011-04-20 22:26:06 +02:00 |
|
David Zbarsky
|
c4d29900ed
|
Bug 610305: decom nsEventStateManager r=smaug
|
2011-04-20 21:42:33 +02:00 |
|
Boris Zbarsky
|
2bad4d16d0
|
Bug 598832 part 15. Make RuleProcessorData not inherit from TreeMatchContext anymore, so we can decouple the lifetimes. r=dbaron
|
2011-03-29 13:29:21 -04:00 |
|
Boris Zbarsky
|
b2528f25ed
|
Bug 598832 part 9. Stop caching the element's local name; just get it from the DOM as needed. r=dbaron
|
2011-03-29 13:29:21 -04:00 |
|
Boris Zbarsky
|
c2d78db208
|
Bug 598832 part 7. Stop caching the content state of elements; just reget it from the DOM as needed. r=dbaron
|
2011-03-29 13:29:21 -04:00 |
|
Boris Zbarsky
|
0c71da47ea
|
Bug 598832 part 3. Stop keeping track of whether the node or document is HTML in the RuleProcessorData. r=dbaron
|
2011-03-29 13:29:20 -04:00 |
|
L. David Baron
|
019db3ab80
|
Convert custom style rules to property getters instead of accessing struct members. (Bug 636039, patch 8) r=bzbarsky
|
2011-03-17 20:14:31 -07:00 |
|
Mounir Lamouri
|
66067bcb7b
|
Bug 595036 (2/2) - Introduce nsEventStates class to represent event states. r+a=bz
|
2010-10-20 13:26:32 +02:00 |
|
Boris Zbarsky
|
19c43a518c
|
Bug 586400. Cellpadding changes need to reresolve descendants. r=dbaron
|
2010-08-25 14:54:47 -04:00 |
|
Craig Topper
|
f720fbc615
|
Bug 575901 - DeCOMtaminate nsIStyleRuleProcessor method signatures. r=bz
|
2010-07-18 23:20:40 +02:00 |
|
Ms2ger@gmail.com
|
a4005e2fd1
|
Bug 538362 - rename nsIDocument::GetPrimaryShell to nsIDocument::GetShell. r=smaug
|
2010-06-25 15:59:57 +02:00 |
|
Boris Zbarsky
|
e81230c9bb
|
Bug 494117 part 2. Don't force selector matching on the whole subtree rooted at an element when the element's style changes. r=dbaron
|
2010-06-18 12:23:05 -04:00 |
|
Boris Zbarsky
|
37c6532fe1
|
Bug 494117 part 1. Rename eRestyle_Self to eRestyle_Subtree. r=dbaron
|
2010-06-18 12:23:05 -04:00 |
|