Dhi Aurrahman
|
5b8f79fc23
|
Bug 1125766 - Throw proper error types for TextEncoder(), TextDecoder() and TextDecoder.decode(). r=bz
|
2015-02-04 18:46:26 +07:00 |
Mike Hommey
|
a35dbaeebf
|
Bug 1126593 - Add a global fallible instance, so that using fallible works directly, everywhere. r=njn
--HG--
rename : memory/mozalloc/fallible.h => memory/fallible/fallible.h
|
2015-02-02 09:56:13 +09:00 |
Boris Zbarsky
|
89c88d7883
|
Bug 1092737 part 2. Update TextDecoder to various spec changes. r=emk
|
2014-11-21 14:58:51 -05:00 |
Henri Sivonen
|
34b67bca76
|
Bug 943268 - Remove nsCharsetAlias and nsCharsetConverterManager. r=emk.
|
2014-05-08 12:32:00 +03:00 |
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 |
Henri Sivonen
|
cc6db4c2e7
|
Bug 848842 - Stop using heuristic detection in the File API. r=bzbarsky.
|
2013-12-17 12:47:25 +02:00 |
Henri Sivonen
|
7b95f9e668
|
Bug 919935 - Add a deCOMtaminated way to instantiate nsIUnicodeDecoders and nsIUnicodeEncoders. r=emk.
|
2013-11-26 09:31:52 +02:00 |
Henri Sivonen
|
2dc38251fe
|
Bug 863728 - Implement the replacement encoding. r=emk.
|
2013-11-25 10:06:56 +02:00 |
Kyle Huey
|
987e066167
|
Bug 903772: Part 6 - Remove TextDecoderBase. r=emk
|
2013-08-22 22:17:09 -07:00 |
Kyle Huey
|
a8d304b212
|
Bug 903772: Part 5 - Remove the worker TextDecoder implementation. r=emk
|
2013-08-22 22:17:09 -07:00 |
Masatoshi Kimura
|
e5f58138b5
|
Bug 841479 - Remove nsISupports inheritance from TextDecoder and TextEncoder. r=bz
|
2013-02-15 05:36:50 +09:00 |
Masatoshi Kimura
|
17d6d79ec8
|
Bug 825195 - Update method signatures of TextDecoder and TextEncoder per the latest spec. r=jonas
|
2012-12-29 09:55:32 +09:00 |
Masatoshi Kimura
|
e9c46e4563
|
Bug 795542 - Part 1: Create Text(En|De)coderBase. r=bent
--HG--
rename : dom/encoding/TextDecoder.h => dom/encoding/TextDecoderBase.h
rename : dom/encoding/TextEncoder.h => dom/encoding/TextEncoderBase.h
|
2012-12-22 09:15:43 +09:00 |
William Chen
|
c3b4bdb077
|
Bug 820544 - Prefix WebIDL dictionary native member names to avoid C++ keywords. r=bz
|
2012-12-17 13:44:04 -08:00 |
Ed Morley
|
fbf6fab8e8
|
Backout 67d84be0cc83 (bug 820544) for bustage
|
2012-12-14 16:58:51 +00:00 |
William Chen
|
45b4ea581a
|
Bug 820544 - Prefix webidl dictionary native members names to avoid C++ keywords. r=bz
|
2012-12-11 16:05:46 -08:00 |
Masatoshi Kimura
|
ca51d6a175
|
Bug 638379 - Part 3: Remove workaround for unreliable inputErrorBehavior. r=hsivonen
|
2012-12-10 09:11:15 -05:00 |
Masatoshi Kimura
|
65389fbd53
|
Bug 782412 - Part 5: Remove a workaround from dom/encoding. r=hsivonen
|
2012-11-26 20:38:20 -05:00 |
Masatoshi Kimura
|
f65df800e1
|
Bug 811127 - Text(De|En)coder("utf-16").encoding should return "utf-16le", not "utf-16". r=hsivonen
|
2012-11-14 21:01:07 -05:00 |
Masatoshi Kimura
|
a87ade4d88
|
Bug 562091 - Remove the EUC-KR conveter and rename x-windows-949 to EUC-KR. r=smontagu
|
2012-11-13 18:58:48 -05:00 |
Masatoshi Kimura
|
202ef70d50
|
Bug 801402 - Reintroduce x-windows-949 hack. r=hsivonen
|
2012-11-09 16:00:26 -05:00 |
Masatoshi Kimura
|
61bb610373
|
Bug 801402 - Make EncodingUtil methods case sensitive. r=hsivonen
|
2012-11-07 18:04:22 -05:00 |
Masatoshi Kimura
|
71bfac3047
|
Bug 801487 - Remove encoding detection using BOM. r=sicking
|
2012-11-06 18:23:14 -05:00 |
Masatoshi Kimura
|
3515bb4825
|
Bug 801487 - Change some exceptions from EncodingError to TypeError. r=sicking
|
2012-11-06 18:23:14 -05:00 |
Masatoshi Kimura
|
08d52f057c
|
Bug 801487 - Update StringEncoding API per the latest spec and fix some bugs. r=sicking
|
2012-10-24 22:03:21 -04:00 |
Masatoshi Kimura
|
13e54c9451
|
Bug 764234 - Implement StringEncoding API. r=dougt,smontagu
|
2012-09-28 11:19:18 +01:00 |