Changeset 20933 in webkit


Ignore:
Timestamp:
Apr 18, 2007 1:05:06 PM (17 years ago)
Author:
kmccullo
Message:

Reviewed by AP.

  • Consolidated encoding tests.
  • fast/encoding/char-decoding-expected.txt:
  • fast/encoding/char-decoding.html:
  • fast/encoding/charset-x-nextstep-expected.txt: Removed.
  • fast/encoding/charset-x-nextstep.html: Removed.
Location:
trunk/LayoutTests
Files:
2 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r20931 r20933  
     12007-04-18  Kevin McCullough  <kmccullough@apple.com>
     2
     3        Reviewed by AP.
     4
     5        - Consolidated encoding tests.
     6
     7        * fast/encoding/char-decoding-expected.txt:
     8        * fast/encoding/char-decoding.html:
     9        * fast/encoding/charset-x-nextstep-expected.txt: Removed.
     10        * fast/encoding/charset-x-nextstep.html: Removed.
     11
    1122007-04-17  Mitz Pettel  <mitz@webkit.org>
    213
  • trunk/LayoutTests/fast/encoding/char-decoding-expected.txt

    r19969 r20933  
    77PASS decode('macintosh', '%C3') is 'U+221A'
    88PASS decode('MacRoman', '%C3') is 'U+221A'
     9PASS decode('x-nextstep', '%E1') is 'U+00C6'
     10
     11The x-nextstep test is meant to ensure that we still support legacy encodings that are not part of ICU - it is expected that it fails in other browsers, which do not support this particular encoding. See http://bugs.webkit.org/show_bug.cgi?id=4195 for more details.
    912
    1013PASS successfullyParsed is true
  • trunk/LayoutTests/fast/encoding/char-decoding.html

    r19969 r20933  
    4040testDecode('macintosh', '%C3', 'U+221A');
    4141testDecode('MacRoman', '%C3', 'U+221A');
     42testDecode('x-nextstep', '%E1', 'U+00C6');
     43debug('');
     44
     45debug("The x-nextstep test is meant to ensure that we still support legacy encodings that are not part of ICU - it is expected that it fails in other browsers, which do not support this particular encoding. See <a href=\"http://bugs.webkit.org/show_bug.cgi?id=4195\">http://bugs.webkit.org/show_bug.cgi?id=4195</a> for more details.");
    4246
    4347debug('');
Note: See TracChangeset for help on using the changeset viewer.