Ehsan Akhgari
|
1b83407ce9
|
Bug 927728 - Part 1: Replace PRUnichar with char16_t; r=roc
This patch was automatically generated by the following script:
#!/bin/bash
# Command to convert PRUnichar to char16_t
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*modules/libmar*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name prtypes.h \
! -name Char16.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 PRUnichar char16_t
|
2014-01-04 10:02:17 -05:00 |
Mike Hommey
|
a0174efd63
|
Bug 942137 - Fix non-unified build after bug 932102; r=dbaron
|
2013-11-22 23:08:35 +09:00 |
Jon Coppeard
|
5d2c44915e
|
Bug 932102 - Fix rooting hazard in nsStyleUtil::AppendAngleValue r=dbaron
|
2013-11-21 01:00:57 +00:00 |
Garrett Robinson
|
1da990368c
|
Bug 855326 - CSP 1.1 nonce-source for scripts and styles r=mrbkap r=dholbert r=geekboy
|
2013-11-08 15:44:39 -08:00 |
Daniel Holbert
|
9a3437dd77
|
backout 57213b64023b (bug 855326) for build bustage in debug builds
CLOSED TREE
|
2013-11-08 11:22:36 -08:00 |
Garrett Robinson
|
5add685cdd
|
Bug 855326 - CSP 1.1 nonce-source for scripts and styles. r=mrbkap r=dholbert r=geekboy
|
2013-11-08 09:20:43 -08:00 |
Ehsan Akhgari
|
6ada2899b2
|
Bug 916610 - Minimize the #includes in layout/style; r=roc
|
2013-09-15 21:06:52 -04:00 |
Seth Fowler
|
9af1f57738
|
Bug 825771 (Part 1) - Add CSS support for the image-orientation property. r=dbaron
|
2013-08-28 15:39:06 -07:00 |
John Daggett
|
0eae803e8f
|
Bug 549861 - reland font-variant subproperties with DOM-peer review. r=khuey
|
2013-05-20 11:59:20 +09:00 |
Ms2ger
|
a8ca7bda9d
|
Merge backout.
|
2013-05-19 20:26:58 +02:00 |
Ms2ger
|
7786ea6954
|
Backout bug 549861 (changesets 27fb48df15ce:7ecd4e3863b4) for insufficient review.
|
2013-05-19 20:23:19 +02:00 |
John Daggett
|
3fdc406a01
|
Bug 549861. Changes based on review comments for parsing of font-variant-alternates. r=dbaron
|
2013-05-13 18:45:38 +09:00 |
John Daggett
|
6f990b3fc6
|
Bug 549861. Implement CSS parsing of font-variant-alternates. r=dbaron
|
2013-05-13 18:45:37 +09:00 |
Ian Melven
|
8b39be405f
|
Bug 763879 - implement inline stylesheet blocking for CSP (r=dbaron)
|
2012-08-30 10:58:24 -07:00 |
Ryan VanderMeulen
|
40179edaf5
|
Backed out 2 changesets (bug 763879, bug 842657) for landing with an r-. DONTBUILD
Backed out changeset 254c1ac4ab8b (bug 842657)
Backed out changeset 58a2011beeac (bug 763879)
|
2013-05-16 11:15:07 -04:00 |
Ian Melven
|
247127753d
|
Bug 763879 - implement inline stylesheet blocking for CSP (r=dbaron)
|
2012-08-30 10:58:24 -07:00 |
David Zbarsky
|
3250bd906e
|
[Bug 847110] Fix up includes in layout/style r=dbaron
|
2013-03-02 19:31:48 -05:00 |
Cameron McCormack
|
bc2d799592
|
Bug 828805 - Implement SVG paint-order property. r=bz,roc
|
2013-01-13 10:27:53 +11:00 |
Zack Weinberg
|
f6d51ce9b0
|
Bug 229827: escape unprintable characters in CSS parser diagnostics. r=dbaron
|
2012-11-16 21:53:38 -05:00 |
Ryan VanderMeulen
|
8a64b526bc
|
Backed out changesets b242651c3c1b (bug 229827), b36eaac9ecf8, and 40f38a8aa660 (bug 663291) for mochitest-3/4 failures.
CLOSED TREE
|
2012-11-16 16:59:38 -05:00 |
Zack Weinberg
|
04aa42be23
|
Bug 229827: escape unprintable characters in CSS parser diagnostics. r=dbaron
--HG--
extra : rebase_source : 9298095c2cd7669b5ca1a07cd5378a852c4a7f36
|
2012-11-16 15:29:21 -05: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 |
Shriram Kunchanapalli
|
52ac1d5caf
|
Bug 219767: Move font size functions in nsStyleUtil into nsRuleNode. r=dbaron
|
2012-05-31 10:09:46 +05:30 |
Gervase Markham
|
82ff7027aa
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
John Daggett
|
4984947d00
|
Bug 718539. Update font-feature-settings to latest spec syntax. r=dbaron
|
2012-04-26 15:24:26 +09: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 |
Javi Rueda
|
4717926b02
|
Bug 516547. Remove the browser.display.base_font_scaler preference and all the code to process it. r=bzbarsky, sr=dbaron.
|
2011-07-11 15:27:25 -04:00 |
Craig Topper
|
8b8747d605
|
Bug 557416: Remove unnecessary includes and forward declarations of nsPresContext. r=roc
|
2010-04-10 16:10:12 -04:00 |
Shawn Wilsher
|
456e4f62d4
|
Bug 461199 (Part 16) - Remove now unused style code testing for Link and HTML Links.
r=bz
sr=dbaron
|
2009-12-15 16:04:15 -08:00 |
Shawn Wilsher
|
ea442619c6
|
Backed out changeset a3e287904065
|
2010-02-18 10:01:58 -08:00 |
Shawn Wilsher
|
c88f581583
|
Bug 461199 (Part 16) - Remove now unused style code testing for Link and HTML Links.
r=bz
sr=dbaron
|
2009-12-15 16:04:15 -08:00 |
L. David Baron
|
207f737143
|
Appropriately escape CSS identifiers when serializing. (Bug 543428) r=bzbarsky
|
2010-02-04 12:49:29 -08:00 |
Daniel Holbert
|
86e58b6697
|
Bug 522320: Put auto/none/normal keywords in CSS keyword tables for properties that take enum values. Patch 1 (handle single-valued SVG-animatable properties). r=dbaron
|
2009-10-21 14:57:57 -07:00 |
Peter Van der Beken
|
ffbf9a7ae8
|
Fix for bug 499781 (Move some methods from nsILink to nsIContent). r=bz, sr=dbaron.
--HG--
extra : rebase_source : da0ec8bfb6825d2e55edd2f5b08a9e43b033a2a3
|
2009-07-13 13:48:06 +02:00 |
Boris Zbarsky
|
8b2e29fc7f
|
Bug 482394. Drop the aForStyling check in IsHTMLLink/IsLink: if we change the link state, we need to start tracking the link. r+sr=dbaron
|
2009-03-10 09:51:34 -04:00 |
L. David Baron
|
79a32cbc5a
|
Change nsStyleUtil::EscapeCSSString to nsStyleUtil::AppendEscapedCSSString, since almost all callers prefer append behavior anyway. (Bug 478160) r+sr=bzbarsky
|
2009-03-06 13:05:00 +09:00 |
L. David Baron
|
dbcb511748
|
Backed out changeset eec3076f3bab (Bug 474655, Warn when nsIDOMCSSStyleDeclaration::GetPropertyCSSValue is called) because we trigger the warning too much ourselves (Bug 475311)
|
2009-02-04 13:22:45 -08:00 |
L. David Baron
|
f0ecf93e24
|
Warn when nsIDOMCSSStyleDeclaration::GetPropertyCSSValue is called. (Bug 474655) r+sr=bzbarsky
|
2009-01-22 17:28:14 -08:00 |
L. David Baron
|
f220d33702
|
Convert tabs to spaces.
|
2008-10-20 14:07:09 +02:00 |
Boris Zbarsky
|
7759eed086
|
Bug 416317. Implement querySelector(All) API. r=dbaron, sr=jst
|
2008-07-21 17:55:52 -07:00 |
dbaron@dbaron.org
|
e3536c41e1
|
Fix handling of dynamic changes for advanced CSS selectors (and avoid the cost of doing so in the normal case). b=401291, 75386, 98997, 229915, 404418 (blocking1.9+) r+sr=bzbarsky a=blocking1.9+ on 404418
|
2008-02-18 22:17:07 -08:00 |
dbaron%dbaron.org
|
5f86dbd57d
|
Round the alpha component in computed style as well. b=372782 r+sr=bzbarsky
|
2007-03-08 18:44:45 +00:00 |
jwatt%jwatt.org
|
bbb6339dc9
|
Fixing bug 334587. Unify event handling for links and fix various XLink bugs. r=olli.pettay@gmail.com, r=dbaron@mozilla.com, sr=bugmail@sicking.cc
|
2007-01-04 10:53:59 +00:00 |
bzbarsky%mit.edu
|
2e62979ba1
|
Getting the selector text should properly escape and quote attribute value
strings. Bug 142648, patch by Daniel Kraft <domob@daniel-kraft.net>, r=dbaron,
sr=bzbarsky.
|
2005-01-30 18:01:57 +00:00 |
tor%cs.brown.edu
|
0c326e84e7
|
Bug 216563 - implement <svg:switch>.
Patch by scootermorris@comcast.net, r=afri, sr=dbaron
|
2004-08-23 21:10:39 +00:00 |
bryner%brianryner.com
|
5c02a6978c
|
Change nsIPresContext to nsPresContext globally, follow-up to bug 253470. rs=roc
|
2004-07-31 23:15:21 +00:00 |
gerv%gerv.net
|
9d2ee4928c
|
Bug 236613: change to MPL/LGPL/GPL tri-license.
|
2004-04-17 21:52:36 +00:00 |
bzbarsky%mit.edu
|
b84cf009ec
|
Make font-size:larger and font-size:smaller smarter about interpolating and
extrapolating font sizes. Bug 72164, patch by Eric Lawrence
<elawrenc69@yahoo.com>, r=bzbarsky, r+sr=dbaron, a=asa
|
2003-05-17 16:11:51 +00:00 |
bryner%netscape.com
|
e43f5a49fd
|
Remove nsIStyleContext (bug 114713), r/sr=dbaron. Changed lots of methods to use nsStyleContext* or already_AddRefed<nsStyleContext> as return values, depending on whether a reference is returned. Turn on nsRefPtr (bug 104346), and change nsDerivedSafe to not declare AddRef and Release explicitly virtual, r=jag, sr=dbaron.
|
2003-02-22 00:32:13 +00:00 |
dbaron%fas.harvard.edu
|
839c83ca5d
|
Move FindNonTransparentBackground from nsStyleUtil to nsCSSRendering so that nsStyleUtil doesn't need to be in content/shared. b=71257 r=heikki sr=bzbarsky
|
2002-08-11 17:56:15 +00:00 |