Corey Ford
|
1b743eac38
|
Bug 886646 - Part 1: Support position:sticky in the CSS parser, enabled by a preference. r=heycam
|
2013-09-05 15:47:08 -07:00 |
|
Seth Fowler
|
e57e4a214f
|
Bug 825771 (Part 1) - Add CSS support for the image-orientation property. r=dbaron
|
2013-08-28 15:39:06 -07:00 |
|
John Daggett
|
0ad5eb80ed
|
Bug 875250 - implement CSS parsing of text-orientation, text-combine-horizontal properties. r=dholbert
|
2013-08-19 19:26:44 +09:00 |
|
John Daggett
|
b9513dce5c
|
Bug 904263 - check pref settings more efficiently. r=dbaron
|
2013-08-19 13:49:49 +09:00 |
|
Masayuki Nakano
|
03e0066f13
|
Bug 812995 Support 'blink' value at -moz-text-decoration-line and drop -moz-text-blink r=dbaron
|
2013-08-06 23:02:34 +09:00 |
|
Ms2ger
|
7bf62da840
|
Backout changeset f2ac3d57b445 for insufficient review.
|
2013-08-08 19:37:47 +02:00 |
|
Masayuki Nakano
|
e08e2dc2d3
|
Bug 812995 Support 'blink' value at -moz-text-decoration-line and drop -moz-text-blink r=dbaron
|
2013-08-06 23:02:34 +09:00 |
|
Rik Cabanier
|
6db63a8c81
|
Bug 901375 - Implement support in CSS for mix-blend-mode; r=heycam
|
2013-08-07 16:59:10 +09:00 |
|
Max Vujovic
|
a0613f3e89
|
Bug 898175 - Refactor filter parsing to use a keyword lookup table for filter function names. r=dbaron
|
2013-08-06 17:53:30 +10:00 |
|
Ehsan Akhgari
|
085494b95d
|
Bug 895322 - Part 1: Replace the usages of MOZ_STATIC_ASSERT with C++11 static_assert; r=Waldo
This patch was mostly generated by running the following scripts on the codebase, with some
manual changes made afterwards:
# static_assert.sh
#!/bin/bash
# Command to convert an NSPR integer type to the equivalent standard integer type
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 "*.cc" \
-o -iname "*.mm" \) | \
xargs -n 1 `dirname $0`/assert_replacer.py #sed -i -e "s/\b$1\b/$2/g"
}
convert MOZ_STATIC_ASSERT static_assert
hg rev --no-backup mfbt/Assertions.h \
media/webrtc/signaling/src/sipcc/core/includes/ccapi.h \
modules/libmar/src/mar_private.h \
modules/libmar/src/mar.h
# assert_replacer.py
#!/usr/bin/python
import sys
import re
pattern = re.compile(r"\bMOZ_STATIC_ASSERT\b")
def replaceInPlace(fname):
print fname
f = open(fname, "rw+")
lines = f.readlines()
for i in range(0, len(lines)):
while True:
index = re.search(pattern, lines[i])
if index != None:
index = index.start()
lines[i] = lines[i][0:index] + "static_assert" + lines[i][index+len("MOZ_STATIC_ASSERT"):]
for j in range(i + 1, len(lines)):
if lines[j].find(" ", index) == index:
lines[j] = lines[j][0:index] + lines[j][index+4:]
else:
break
else:
break
f.seek(0, 0)
f.truncate()
f.write("".join(lines))
f.close()
argc = len(sys.argv)
for i in range(1, argc):
replaceInPlace(sys.argv[i])
--HG--
extra : rebase_source : 4b4a4047d82f2c205b9fad8d56dfc3f1afc0b045
|
2013-07-18 13:59:53 -04:00 |
|
John Daggett
|
a9de42a1ec
|
Bug 857142 - change name and switch to grayscale value. r=dbaron
|
2013-07-30 05:01:14 +09:00 |
|
John Daggett
|
bed3fbfbd2
|
Bug 857142 - implement -moz-font-smoothing. r=dbaron
|
2013-07-30 05:00:41 +09:00 |
|
Simon Sapin
|
d6f3091b8f
|
Bug 483446 - CSS3 'background-attachment: local' support. r=roc
|
2013-07-23 09:22:58 -04:00 |
|
Rick Eyre
|
83c073b612
|
Bug 772321 - Implement CSS parsing of writing-mode r=dbaron
|
2013-05-28 12:00:49 -04:00 |
|
Michael Harrison
|
f7b0b83f4a
|
Bug 772153 - Add support for unprefixed cursor:zoom-in/out. r=bz
|
2013-06-03 08:49:38 -04:00 |
|
Daniel Holbert
|
568a0e9c03
|
Bug 864553 part 1: Remove ifdefs for MOZ_FLEXBOX and configure.in MOZ_FLEXBOX chunk. r=dbaron
|
2013-05-22 11:44:25 +08:00 |
|
John Daggett
|
aa507d8c18
|
Bug 549861 - reland font-variant subproperties with DOM-peer review. r=khuey
|
2013-05-20 11:59:20 +09:00 |
|
Ms2ger
|
e0c18984a5
|
Backout bug 549861 (changesets 27fb48df15ce:7ecd4e3863b4) for insufficient review.
|
2013-05-19 20:23:19 +02:00 |
|
John Daggett
|
9558e43335
|
Bug 549861. Alias unprefixed versions of font-feature-settings and font-language-override. r=dbaron
|
2013-05-13 18:45:38 +09:00 |
|
John Daggett
|
57964002fe
|
Bug 549861. Implement CSS parsing of font-variant-alternates. r=dbaron
|
2013-05-13 18:45:37 +09:00 |
|
John Daggett
|
a00ecfde45
|
Bug 549861. Parse simple font-variant subproperties. r=dbaron
|
2013-05-13 18:45:36 +09:00 |
|
Cameron McCormack
|
30b5ba2337
|
Bug 856879 - Remove constructor arguments argument from style struct macros. r=dbaron
|
2013-04-02 12:45:48 +11:00 |
|
Jonathan Watt
|
6759296438
|
Bug 855301 - Add support for native theming of <input type=range> on Linux. r=roc
|
2013-03-28 20:25:05 +00:00 |
|
L. David Baron
|
8dc54af84c
|
Bug 849657 patch 1: Expose CSS_PROP_PUBLIC_OR_PRIVATE macro to users of nsCSSPropList.h rather than CSS_PROP_DOMPROP_PREFIXED, so that we can avoid 'CssFloat' spreading even further. r=bzbarsky
|
2013-03-25 09:24:21 -07:00 |
|
Jonathan Watt
|
02ce4ceb97
|
Bug 846883 - Add support for native theming of <input type=range> on OS X. r=roc
|
2013-03-16 05:40:15 +00:00 |
|
L. David Baron
|
60943056b5
|
Make gAliases be just an array of ids. (Bug 849656, patch 4) r=bzbarsky
|
2013-03-13 09:58:39 -07:00 |
|
L. David Baron
|
a87eac66d9
|
Move enabled state for aliases from gAliases to gPropertyEnabled. (Bug 849656, patch 3) r=bzbarsky
|
2013-03-13 09:58:39 -07:00 |
|
L. David Baron
|
5f639edc78
|
Move names for aliases from gAliases into kCSSRawProperties. (Bug 849656, patch 2) r=bzbarsky
|
2013-03-13 09:58:39 -07:00 |
|
L. David Baron
|
313fd38cc9
|
Bug 840367: Fix misnaming of keyword IDs in nsCSSKeywordList.h. r=heycam
|
2013-02-13 11:53:56 -08:00 |
|
Jonathan Watt
|
311968ccaf
|
Bug 835883 - Give the -moz-orient property an 'auto' value, and make that its initial value. r=dholbert.
|
2013-02-02 19:13:22 +01:00 |
|
Chris Peterson
|
81bf7b134b
|
Bug 816298 - Part 1: Allow child elements to override -moz-user-select:none. r=ehsan
--HG--
extra : rebase_source : f4e08713be0691c25b22510977c978088655ec8b
|
2013-01-08 16:33:17 -08:00 |
|
Ehsan Akhgari
|
dbaf74bc59
|
Backed out changeset 5af4c6bd5104 (bug 827075) because it is no longer necessary
|
2013-01-14 16:21:54 -05:00 |
|
Ehsan Akhgari
|
ac66f2835b
|
Bug 827075 - Implement the -moz-menubar color and make it return the correct background color on gtk; r=roc
|
2013-01-05 23:07:27 -05:00 |
|
Cameron McCormack
|
3a091090a1
|
Bug 793617 - Implement mask-type property. r=dbaron,longsonr
|
2012-12-21 11:15:22 +11:00 |
|
Jonathan Kew
|
ee53a4beec
|
bug 774560 pt 2 - implement text-transform:full-width. r=smontagu
|
2012-11-09 09:43:48 +00:00 |
|
Daniel Holbert
|
651180579f
|
Bug 801098: Unprefix flexbox properties & keywords (still preffed off by default). r=dbaron
|
2012-10-15 12:42:43 -07:00 |
|
Nathan Froyd
|
47c3eda791
|
Bug 796279 - remove remaining PR_MAX instances from the tree; r=ehsan
We can't use NS_MAX or std::max because we lack uniform constexpr
support across our supported compilers. But we can do a simple inline
max ourselves.
|
2012-10-01 20:38:21 -04:00 |
|
Daniel Holbert
|
1c3ec77888
|
Bug 796212 part 2: Make pref "layout.css.flexbox.enabled" control whether -moz-flex and -moz-inline-flex are recognized as valid values for "display" property. r=bz
|
2012-10-02 22:04:50 -07:00 |
|
Ehsan Akhgari
|
5d0ab6fa28
|
Backout changeset 9e38c5518605, fc59bd8d49ba, d0ba1abde985, and acf91f25f228 (bugs 796119, 796279, and 797106) because of broken reftests on 64-bit platforms
|
2012-10-02 23:16:36 -04:00 |
|
Nathan Froyd
|
65c7ca9722
|
Bug 796279 - remove remaining PR_MAX instances from the tree; r=ehsan
We can't use NS_MAX or std::max because we lack uniform constexpr
support across our supported compilers. But we can do a simple inline
max ourselves.
|
2012-10-01 20:38:21 -04:00 |
|
L. David Baron
|
233751c6ae
|
Bug 774169, patch 3: Treat -moz-transform as a shorthand rather than an alias so the parsing function can know whether it is parsing a prefixed transform. r=bzbarsky
|
2012-09-18 11:37:14 -07:00 |
|
Cameron McCormack
|
09aeb61301
|
Bug 655877 - Part 23a: Add white-space:-moz-pre-discard-newlines value with white space collapsing behavior like SVG's xml:space="preserve". r=roc,dbaron
|
2012-09-07 15:42:19 +10:00 |
|
Edwin Flores
|
ccb631db79
|
Bug 719286 - Add support for -moz-objectValue keyword to CSS parser for SVG glyphs r=dbaron
|
2012-09-06 16:58:47 +12:00 |
|
Edwin Flores
|
0300bf0a15
|
Bug 719286 - Add support for -moz-objectFillOpacity and -moz-objectStrokeOpacity to CSS parser for SVG glyphs r=dbaron
|
2012-09-06 16:58:46 +12:00 |
|
Edwin Flores
|
cac293e907
|
Bug 719286 - Add support for objectfill and objectstroke values to CSS parser r=dbaron
|
2012-09-06 16:58:46 +12:00 |
|
Randell Jesup
|
29ac5c0b8c
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
|
Ehsan Akhgari
|
8c296bbcd4
|
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 |
|
Simon Montagu
|
07b09b2133
|
Implement the new CSS property value unicode-bidi: isolate-override. Bug 774335, r=dbaron
|
2012-08-07 01:42:46 -07:00 |
|
Scott Johnson
|
c5aaabe440
|
Bug 764567: Implement column-fill part of CSS3 multicol spec, now with regression fixes [r=roc].
|
2012-07-31 11:21:19 -05:00 |
|
Aryeh Gregor
|
57c0ad57fb
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|