Gijs Kruitbosch
|
38f778c3d4
|
Bug 992691 - don't allow dropping multiple files on non-multiple file input, r=smaug
--HG--
extra : rebase_source : a1c2b1b2854d39efcab6ac0f02ce6f4f57c6b9e8
|
2014-11-18 15:58:08 +00:00 |
Ehsan Akhgari
|
60360fc645
|
Bug 1060985 - Fix more bad implicit constructors in layout; r=roc
|
2014-08-31 23:36:37 -04:00 |
Trevor Saunders
|
8f78184d9a
|
bug 1016545 - Provide an iterator that iterates over all children of an element r=bz
|
2014-07-16 14:41:57 -04:00 |
Jonathan Kew
|
ce9cbe4216
|
bug 1031241 pt 1 - Rename Get{Min,Pref}Width to Get{Min,Pref}ISize throughout layout. r=dbaron,smontagu
|
2014-07-24 18:03:25 +01:00 |
Benoit Jacob
|
e1b7dbca34
|
Bug 1028588 - Fix dangerous public destructors in layout/ - r=dbaron
|
2014-06-23 18:40:01 -04:00 |
Mats Palmgren
|
399be41768
|
Bug 508665 - part 5, Make nsIFrame::Init require a nsContainerFrame* for the parent frame param. r=roc
|
2014-05-24 22:20:40 +00:00 |
Masayuki Nakano
|
3cc4e99fc0
|
Bug 989212 Rename nsEventStates to mozilla::EventStates r=smaug
--HG--
rename : dom/events/nsEventStates.h => dom/events/EventStates.h
|
2014-04-03 13:18:36 +09:00 |
Arnaud Sourioux
|
a127266e74
|
Bug 974687 - Part 1: Add about 300 MOZ_OVERRIDE in layout/. r=dholbert
|
2014-02-24 09:41:56 -05:00 |
Daniel Holbert
|
3146c96a56
|
Bug 919806 followup: Reindent method declarations affected by NS_IMETHOD-removal. (whitespace-only; no review) DONTBUILD
|
2014-02-18 00:36:33 -08:00 |
Arnaud Sourioux
|
2d583fd28f
|
Bug 919806: Get rid of NS_IMETHOD in nsIFrame.h and its implementations r=dholbert
|
2014-02-17 23:47:48 -08:00 |
Mats Palmgren
|
e6ea29ce0d
|
Bug 956447 - Make it possible to get frame dumps in non-DEBUG builds. r=roc
|
2014-01-05 23:31:14 +00:00 |
Arnaud Sourioux
|
c6d0c9ac5d
|
Bug 875367: Annotate ~280 more methods with MOZ_OVERRIDE in /layout. r=dholbert
|
2013-05-29 12:37:49 -07:00 |
Arnaud Sourioux
|
623d2ed378
|
Bug 870516: Annotate ~600 more methods with MOZ_OVERRIDE in /layout r=dholbert
|
2013-05-14 09:33:23 -07:00 |
Mounir Lamouri
|
5a5a41fbc8
|
Bug 839834 - Remove nsIFormControlFrame::GetFormProperty. r=bz
|
2013-02-18 18:21:32 +00:00 |
Mounir Lamouri
|
dfd35238b6
|
Bug 838703 - Various nsFileControlFrame cleanup. r=bz
|
2013-03-22 17:15:13 +00:00 |
Mounir Lamouri
|
9ca37ce8fa
|
Bug 838695 - Move nsFileControlFrame click handling to nsHTMLInputElement. r=smaug
--HG--
rename : content/html/content/test/test_input_file_picker.html => content/html/content/test/forms/test_input_file_picker.html
|
2013-03-27 11:32:00 +00:00 |
Mounir Lamouri
|
8a01249a9f
|
Bug 345195 - Replace the anonymous <input type='text'> in <input type='file'> by a xul:label. r=bz
|
2013-02-09 14:57:30 +00:00 |
Mounir Lamouri
|
68c0f2cae5
|
Bug 838354 - Remove all capture button references from nsFileControlFrame. r=bz
|
2013-03-22 17:10:13 +00:00 |
Boris Zbarsky
|
7f102d7f2d
|
Bug 852428 part 2. Make nsIFrame::Init infallible. r=dholbert
|
2013-03-19 21:47:48 -04:00 |
Robert O'Callahan
|
42e294f8cb
|
Bug 840902. Part 2: Remove nsresults from various display list methods. r=mattwoodrow
--HG--
extra : rebase_source : de498510bf8d85d9b0b2fab0137ef3be01c9adfa
|
2013-02-15 00:12:27 +13:00 |
Daniel Holbert
|
9a11e7cf68
|
Bug 836957 part 2: Remove unnecessary nsIFrame::GetSkipSides() overrides whose implementations are in .cpp files. r=mats
|
2013-02-04 08:17:20 -08:00 |
Trevor Saunders
|
244a675d42
|
bug 542039 - accessible object types r=surkov, roc
|
2012-09-28 17:53:44 -04:00 |
Arnaud Sourioux
|
a84a1b22ad
|
Bug 733186: Annotate ~1000 methods with MOZ_OVERRIDE in /layout r=dholbert r=dbaron
|
2012-09-14 09:10:08 -07: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 |
Ms2ger
|
75ab7efb95
|
Bug 780387 - Part b: Stop using PRIntn; r=bsmedberg
|
2012-08-09 09:09:40 +02:00 |
Aryeh Gregor
|
d0ad5a7d0c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
Jonathan Watt
|
970e60a384
|
Bug 767388 - Kill NS_DEBUG. r=bz.
--HG--
extra : rebase_source : d045208a26345712dbb4628c973c616cd9504f28
|
2012-06-25 20:59:42 +01:00 |
Ehsan Akhgari
|
65884fba1f
|
Bug 758992 - Make the classes which use the XPCOM nsISupports implementation macros final, to avoid the warning about deleting using a pointer to a base class with virtual functions and no virtual dtor (layout parts); r=roc
--HG--
extra : rebase_source : 9f3da1b47dcb9d7cc950488b9b70aa682b6984de
|
2012-06-18 23:26:34 -04:00 |
Ehsan Akhgari
|
2050b687cc
|
Bug 758992 - Make the classes which use the XPCOM nsISupports implementation macros final, to avoid the warning about deleting using a pointer to a base class with virtual functions and no virtual dtor (content parts); r=bzbarsky
--HG--
extra : rebase_source : e25a064995914ca4f7b1db16b5725eb440d3e531
|
2012-06-18 22:30:09 -04: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 |
Gervase Markham
|
82ff7027aa
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
Andrew Quartey
|
d959be51a1
|
Bug 722599 - Move change event firing to content from layout r=mounir
|
2012-05-07 12:27:24 -04:00 |
Jiten Thakkar
|
9617e4bf4f
|
Bug 598244 - nsFileControlFrame should not parse the accept attribute but nsHTMLInputElement should do that; r=mounir
|
2012-03-12 11:36:02 +01:00 |
Mats Palmgren
|
16f40d23b6
|
Bug 589857 - Remove the nsFileControlFrame::mTextFrame member in favor of just retrieving it from the text input content when needed. r=bzbarsky
|
2011-11-18 16:51:41 +13:00 |
Michael Wu
|
d2b70213ac
|
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 |
Jonas Sicking
|
5cbb3ca1f6
|
Bug 664058: Remove AddEventListenerByIID/RemoveEventListenerByIID from nsFileControlFrame. r=smaug
|
2011-06-29 11:07:57 -07:00 |
Michael Ventnor
|
4d6f07caf9
|
Bug 50660 - Drag and drop for file upload form control r=jst,enndeakin
|
2011-06-01 16:06:38 +10:00 |
Boris Zbarsky
|
7d3e2c97ad
|
Bug 654989 part 1. Allow handing out both an nsIContent and an nsStyleContext from CreateAnonymousContent. r=roc
|
2011-05-06 16:04:44 -04:00 |
Jan Küchler
|
c510bc3046
|
Bug 266236 part 3: Mechanical rename of nsIRenderingContext and nsThebesRenderingContext to nsRenderingContext. Mechanical substitution of nsRefPtr<nsRenderingContext> for nsCOMPtr<nsRenderingContext>.
--HG--
rename : gfx/src/nsThebesRenderingContext.cpp => gfx/src/nsRenderingContext.cpp
extra : rebase_source : 34884bfcafd885feaf73300bc7246cd192062a48
|
2011-04-07 18:04:40 -07:00 |
Mounir Lamouri
|
67259dffcd
|
Bug 596088 - Make <input type='file'> looks disabled when inside a disabled fieldset by adding a ContentStatesChanged method in nsIFrame. r=bz sr=roc a=blocking-final
--HG--
rename : layout/reftests/bugs/557087.html => layout/reftests/bugs/557087-1.html
rename : layout/reftests/bugs/557087.html => layout/reftests/bugs/557087-2.html
extra : rebase_source : 350455e646775e42916e90dee7e09f63f84f4db4
|
2010-12-14 10:00:57 -08:00 |
Alexander Surkov
|
7ca32694f5
|
Bug 604386 - Prune placeholder from text children, r=davidb, sr=bz, a=blocking
|
2010-10-16 00:34:35 +09:00 |
Mounir Lamouri
|
59906e6feb
|
Bug 598236 - nsHTMLInputElement should not ask nsFileControlFrame to know the filters for the file picker. r=smaug a=sicking
|
2010-10-08 12:07:20 +02:00 |
David Zbarsky
|
df751a140e
|
Bug 36619 - allow file input .click() to bring up filepicker r=sicking a=blocking
|
2010-08-27 11:49:06 -04:00 |
Kyle Huey
|
83fd9cd6ac
|
Bug 567323: Layout bindings for camera. r=sicking sr=roc
|
2010-07-23 14:35:51 -07:00 |
Benjamin Smedberg
|
dc487751c4
|
Back out bug 567323 because of consistent Mochitest-4 errors:
1530 ERROR TEST-UNEXPECTED-FAIL | /tests/layout/forms/test/test_bug411236.html | Test timed out.
1578 ERROR TEST-UNEXPECTED-FAIL | /tests/layout/forms/test/test_bug534785.html | Test timed out.
1702 ERROR TEST-UNEXPECTED-FAIL | /tests/layout/forms/test/test_bug563642.html | Test timed out.
1709 ERROR TEST-UNEXPECTED-FAIL | /tests/layout/forms/test/test_bug564115.html | Test timed out.
|
2010-07-23 16:16:39 -04:00 |
Kyle Huey
|
1dfe747779
|
Bug 567323: Layout bindings for camera. r=sicking sr=roc
|
2010-07-23 10:58:58 -07:00 |
Kyle Huey
|
3f7b53ea0f
|
Bug 574570: Parse the 'accept' attribute in accordance with the HTML5 spec. r=sicking,volkmar
|
2010-07-21 09:07:55 -07:00 |
Alexander Surkov
|
65c355c8a7
|
Bug 573706 - make frame based accessible creation more pellucid, r=davidb, sr=roc
|
2010-06-28 21:02:03 +09:00 |
Ehsan Akhgari
|
6139ffb2b9
|
Bug 534785 - Move the ownership of editor and selection controller from the text frame to the content node; r=roc,jst sr=roc
(transplanted from 2437636244f39bbdc7d20b062e2c978b9d85c239)
--HG--
rename : layout/reftests/forms/placeholder/placeholder-14.html => layout/reftests/forms/placeholder/placeholder-18.html
extra : transplant_source : %247cbD%F3%9B%BD%C7%D2%0B%06.%2C%97%8B%9D%85%C29
|
2010-04-21 16:17:41 -04:00 |
Mounir Lamouri
|
5c4ba8e9ce
|
Bug 377624 - "Implement the accept attribute for the form and file upload controls form "image/*"" [r=enndeakin,roc]
|
2010-05-19 22:28:01 -04:00 |