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 |
Birunthan Mohanathas
|
3440613a39
|
Bug 713082 - Part 2: Rename Util.h to ArrayUtils.h. r=Waldo
--HG--
rename : mfbt/Util.h => mfbt/ArrayUtils.h
|
2013-12-08 21:52:54 -05:00 |
Cameron McCormack
|
a00c5b4b39
|
Bug 922669 - Part 8: Look at user action pseudo-classes on pseudo-elements during selector matching. r=bz
|
2013-11-28 17:46:39 +11:00 |
Cameron McCormack
|
5bbc325e7f
|
Bug 922669 - Part 7: Add nsStyleSet::HasStateDependentStyle and nsCSSRuleProcessor:HasStateDependentStyle overrides that work on pseudo-elements. r=bz
|
2013-11-28 17:46:39 +11:00 |
Cameron McCormack
|
d7dc2f1d71
|
Bug 922669 - Part 6: Split out user action pseudo-class matching from SelectorMatches. r=bz
|
2013-11-28 17:46:39 +11:00 |
Cameron McCormack
|
8a35f420b9
|
Bug 922669 - Part 5: Store pseudo-element nsCSSSelectors directly in hashtables. r=bz
|
2013-11-28 17:46:39 +11:00 |
Cameron McCormack
|
836792bdcf
|
Bug 922669 - Part 2: Use a different operator to represent the element -> pseudo-element relationship in selectors. r=bz
|
2013-11-28 17:46:38 +11:00 |
Nathan Froyd
|
b438a08286
|
Bug 940170 - part 1 - constify PLDHashTableOps in layout/; r=bz
|
2013-11-18 21:51:48 -05:00 |
Daniel Holbert
|
e846bd6bb3
|
Bug 936628: Add media query to check for whether we have a color picker backend available. r=jimm
|
2013-11-10 19:07:59 -08:00 |
Olli Pettay
|
7c590bb650
|
Bug 934788 - Faster selector matching for attribute selectors by not counting the number of attributes, r=bz
|
2013-11-05 13:53:57 +02:00 |
Cameron McCormack
|
63e8d03dd6
|
Bug 930270 - Don't initialize the ancestor filter for elements outside the document. r=dbaron
--HG--
extra : rebase_source : fa10a28a8bbd9eaf670f8133ccd81a9c706ebec7
|
2013-11-01 13:44:40 +11:00 |
Cameron McCormack
|
8a7175ea9f
|
Bug 927734 - Loosen assertions about the contents of the style scope stack. r=dbaron
--HG--
extra : rebase_source : 6b9b7e4051bebeb7da640c7878229b1d014841dd
|
2013-11-01 13:44:27 +11:00 |
Ehsan Akhgari
|
6ada2899b2
|
Bug 916610 - Minimize the #includes in layout/style; r=roc
|
2013-09-15 21:06:52 -04:00 |
Robert O'Callahan
|
03e7828db2
|
Bug 910989. Remove nsTHashtable::Init, fallible allocation, and MT hashtables. r=ehsan,bsmedberg
--HG--
extra : rebase_source : 0787130b1814c74bfb38dc178de94022f0b2e64e
|
2013-09-02 20:41:57 +12:00 |
Doug Turner
|
3de9e6a0cf
|
Bug 906072 - Remove Maemo port. r=romaxa, r=ted, r=johns
|
2013-08-25 16:56:53 -07:00 |
L. David Baron
|
f76fcad70f
|
Bug 893308: Move hashtable of @keyframes rules (keyed by name) from nsAnimationManager to RuleCascadeData. r=heycam
|
2013-08-14 21:58:37 -07:00 |
Ehsan Akhgari
|
2824b29025
|
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 |
Blake Kaplan
|
a384a15413
|
Bug 890775 - Not all xbl:children elements should be treated specially. r=peterv
|
2013-07-11 17:52:49 -04:00 |
Blake Kaplan
|
7f425da3b1
|
Bug 891088 - Rename nsXBLChildrenElement -> mozilla::dom::XBLChildrenElement. r=peterv
--HG--
rename : content/xbl/src/nsXBLChildrenElement.cpp => content/xbl/src/XBLChildrenElement.cpp
rename : content/xbl/src/nsXBLChildrenElement.h => content/xbl/src/XBLChildrenElement.h
|
2013-07-01 15:09:37 -07:00 |
Jim Mathies
|
ae74e4c64e
|
Bug 810399 - Add new css selectors and media queries for windows os versions. r=bz
|
2013-07-01 11:02:29 -05:00 |
Blake Kaplan
|
67bc7c2c17
|
Bug 653881 - Add a compatibility hack to allow <xbl:children> elements to be optional when selecting via the child CSS selector. This allows old CSS selectors selecting default content to continue working in the new world. r=dbaron
--HG--
extra : rebase_source : 4d538fcbd8a6b58408dc46835632a4664ba8d0d8
|
2013-06-28 18:48:13 -07:00 |
William Chen
|
f39ccea7cb
|
Bug 653881 - Push <xbl:children> in ancestor filter. r=bz,dbaron
--HG--
extra : rebase_source : 9aafffadd2451ca7274e99d7e07d0d71ea52ca02
|
2013-05-30 17:39:08 -07:00 |
Blake Kaplan
|
7a5fa22309
|
Bug 653881 - Rework XBL insertion points and clean up related code to more closely follow the Web Components model. Instead of maintaining a hashtable of insertion points in bindings (and removing insertions points from the tree) leave the insertion points in the tree as explicit placeholders and teach all other relevant code how to walk the explicit children of elements via two iterators (ExplicitChildIterator and FlattenedChildIterator). Note that this patch does not maintain 100% compatibility with the previous code: there are bug fixes and behavior changes included. For example, by having explicit insertion points in the bindings, it is now easier to handle dynamic changes to the bound element correctly (as well as, eventually, handling dynamic changes to the binding correctly). Patch originally by sicking. r=bzbarsky
--HG--
extra : rebase_source : 6926ae8ea57b20f4067b16bd3d7bd85bda854756
|
2013-05-01 15:50:08 -07:00 |
Catalin Iacob
|
6f4758d23e
|
Bug 798914 (part 5) - Use newly introduced mozilla::MallocSizeOf instead of nsMallocSizeOfFun. r=njn.
--HG--
extra : rebase_source : fc472490dd978d165f02f77ed37f07aed6e5bb61
|
2013-06-23 14:03:39 +02:00 |
Ehsan Akhgari
|
0bea732a0a
|
Bug 882948 follow-up - Fix the typo that actually breaks the build (not my day...)
|
2013-06-13 21:40:44 -04:00 |
Ehsan Akhgari
|
73a8948502
|
Bug 882948 - Add widget level support for AeroLite for Winodws Server 2012/2013; r=roc
|
2013-06-13 18:41:26 -04:00 |
Cameron McCormack
|
fd57717940
|
Bug 881339 - Fix bug with descendant selector matching with scoped styles. r=bz
|
2013-06-12 13:09:33 +10:00 |
Jon Coppeard
|
83c2b6e94b
|
Bug 860573 - Part 2 - Use spare bits of wrapper cache flags for nsINode r=smaug
|
2013-06-08 09:54:59 +01:00 |
Michael Wu
|
834c271ce8
|
Bug 771551 - Add CSS Media Query for physical home buttons, r=heycam
|
2013-06-05 22:42:02 -04: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
|
7786ea6954
|
Backout bug 549861 (changesets 27fb48df15ce:7ecd4e3863b4) for insufficient review.
|
2013-05-19 20:23:19 +02:00 |
John Daggett
|
5b570d8745
|
Bug 549861. Implement support for @font-feature-values rule. r=dbaron
|
2013-05-13 18:45:37 +09:00 |
Stephen Pohl
|
6af8265e40
|
Bug 636564 - Implement lion style scrollbars on Mac OSX 10.7+; r=roc
|
2013-05-02 10:58:00 -04:00 |
Mats Palmgren
|
62e2d164d6
|
Bug 856368 - Merge nsPresArena::mState into nsPresArena itself. r=roc
|
2013-04-15 22:00:06 +02:00 |
Stephen Pohl
|
0cd77e174b
|
Bug 678392 - Add support for swipe animation as in Safari. r=smichaud,jaws,felipc
|
2013-04-09 14:44:01 -05:00 |
Trevor Saunders
|
9c54e14d23
|
bug 852379 - remove unecessary nsHashtable.h includes r=Ms2ger
|
2013-03-18 21:18:26 -04:00 |
Robert Strong
|
bbc574349b
|
Back out Bug 678392
|
2013-02-08 16:52:12 -08:00 |
Stephen Pohl
|
2242844b6a
|
Swipe availability check - Bug 678392 - [10.7] Add support for swipe animation as in Safari. r=smichaud
|
2013-02-08 13:57:28 -08:00 |
Matthew Noorenberghe
|
f932eeb8e2
|
Bug 816803 - Add system metric and media query keyword to detect whether the current Windows desktop theme supports Aero Glass. r=jimm,sr=roc
--HG--
extra : rebase_source : 56b27cbbbcc0cde254ef7aa7087f11360c476390
|
2013-01-16 19:27:16 -08:00 |
Cameron McCormack
|
1d38a7132f
|
Bug 829363 - Make :scope match style scope roots. r=bzbarsky
|
2013-01-16 15:48:29 +11:00 |
Mats Palmgren
|
b7ae90666d
|
Bug 786533 - Replace NS_MIN/NS_MAX with std::min/std::max and #include <algorithm> where needed. r=ehsan
|
2013-01-15 13:22:03 +01:00 |
Daniel Holbert
|
13884b7d1d
|
Bug 828838: Fix nsCSSRuleProcessor init-list order. r=heycam
|
2013-01-10 07:55:43 -08:00 |
Cameron McCormack
|
4f4a1d1d74
|
Bug 508725 - Part 6: Modify selector matching to take style scopes into account. r=dbaron
|
2013-01-09 10:25:48 +11:00 |
Cameron McCormack
|
c2964df438
|
Bug 508725 - Part 5: Record the <style scoped> elements in scope in preparation for selector matching. r=dbaron
|
2013-01-09 10:25:48 +11:00 |
Cameron McCormack
|
42c46424b4
|
Bug 508725 - Part 3: Create a rule processor for each style scope. r=dbaron
|
2013-01-09 10:25:47 +11:00 |
Cameron McCormack
|
c067646b00
|
Backout bug 508725 (d267bb4b58b5, 50f71edffeb9, 6aec8e22fe60, e62e1f33958a, 0f146c435249, eb959b9f4862, 2b0ee42f3aa0, 02db01cd6796, 2ef0e517d43d, b650588e05c9 and a3c916829d56) for build failure on a CLOSED TREE.
|
2013-01-08 19:36:21 +11:00 |
Cameron McCormack
|
f83b36df21
|
Bug 508725 - Part 6: Modify selector matching to take style scopes into account. r=dbaron
|
2013-01-08 19:09:23 +11:00 |
Cameron McCormack
|
5000fec383
|
Bug 508725 - Part 5: Record the <style scoped> elements in scope in preparation for selector matching. r=dbaron
|
2013-01-08 19:09:23 +11:00 |
Cameron McCormack
|
6b90406bb3
|
Bug 508725 - Part 3: Create a rule processor for each style scope. r=dbaron
|
2013-01-08 19:09:22 +11:00 |
Boris Zbarsky
|
402ce665fe
|
Bug 818400. Add a preference to control :scope and pref it off in release builds for now. r=dbaron
|
2012-12-24 19:35:34 -08:00 |