Changeset 129234 in webkit


Ignore:
Timestamp:
Sep 21, 2012 9:26:44 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[Qt] REGRESSION: 5 tests started to fail with newer Qt5
https://bugs.webkit.org/show_bug.cgi?id=90687

Patch by Marcelo Lira <marcelo.lira@openbossa.org> on 2012-09-21
Reviewed by Luiz Agostini.

When sending null data via POST method in XMLHttpRequest the
expected Content-Type "application/x-www-form-urlencoded",
instead of "application/octet-stream". In fact that was the previously
expected value for Qt, but was changed to conform to Qt 4.8 results.

The cookie test result was updated to follow RFC 6265 behavior, as
already does chromium, gtk, and efl.

  • platform/qt-5.0/Skipped:
  • platform/qt/http/tests/cookies/double-quoted-value-with-semi-colon-expected.txt: Added.
  • platform/qt/http/tests/xmlhttprequest/methods-expected.txt:
  • platform/qt/http/tests/xmlhttprequest/workers/methods-async-expected.txt:
  • platform/qt/http/tests/xmlhttprequest/workers/methods-expected.txt:
  • platform/qt/http/tests/xmlhttprequest/workers/shared-worker-methods-async-expected.txt:
Location:
trunk/LayoutTests
Files:
1 added
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r129233 r129234  
     12012-09-21  Marcelo Lira  <marcelo.lira@openbossa.org>
     2
     3        [Qt] REGRESSION: 5 tests started to fail with newer Qt5
     4        https://bugs.webkit.org/show_bug.cgi?id=90687
     5
     6        Reviewed by Luiz Agostini.
     7
     8        When sending null data via POST method in  XMLHttpRequest the
     9        expected Content-Type "application/x-www-form-urlencoded",
     10        instead of "application/octet-stream". In fact that was the previously
     11        expected value for Qt, but was changed to conform to Qt 4.8 results.
     12
     13        The cookie test result was updated to follow RFC 6265 behavior, as
     14        already does chromium, gtk, and efl.
     15
     16        * platform/qt-5.0/Skipped:
     17        * platform/qt/http/tests/cookies/double-quoted-value-with-semi-colon-expected.txt: Added.
     18        * platform/qt/http/tests/xmlhttprequest/methods-expected.txt:
     19        * platform/qt/http/tests/xmlhttprequest/workers/methods-async-expected.txt:
     20        * platform/qt/http/tests/xmlhttprequest/workers/methods-expected.txt:
     21        * platform/qt/http/tests/xmlhttprequest/workers/shared-worker-methods-async-expected.txt:
     22
    1232012-09-21  Dan Bernstein  <mitz@apple.com>
    224
  • trunk/LayoutTests/platform/qt-5.0/Skipped

    r127694 r129234  
    7474fast/text/line-breaks-after-ideographic-comma-or-full-stop-2.html
    7575
    76 # [Qt] REGRESSION: 5 tests started to fail with newer Qt5
    77 # https://bugs.webkit.org/show_bug.cgi?id=90687
    78 http/tests/cookies/double-quoted-value-with-semi-colon.html
    79 http/tests/xmlhttprequest/methods.html
    80 http/tests/xmlhttprequest/workers/methods-async.html
    81 http/tests/xmlhttprequest/workers/methods.html
    82 http/tests/xmlhttprequest/workers/shared-worker-methods-async.html
    83 
    8476# [Qt] svg/text/foreignObject-text-clipping-bug giving wrong results
    8577# https://bugs.webkit.org/show_bug.cgi?id=91893
  • trunk/LayoutTests/platform/qt/http/tests/xmlhttprequest/methods-expected.txt

    r97973 r129234  
    55GET("123"): GET(null bytes), Content-Type: null
    66POST(""): POST(0 bytes), Content-Type: application/xml
    7 POST(null): POST(0 bytes), Content-Type: application/octet-stream
     7POST(null): POST(0 bytes), Content-Type: application/x-www-form-urlencoded
    88POST("123"): POST(3 bytes), Content-Type: application/xml
    99PUT(""): PUT(0 bytes), Content-Type: application/xml
  • trunk/LayoutTests/platform/qt/http/tests/xmlhttprequest/workers/methods-async-expected.txt

    r97973 r129234  
    55GET("123"): GET(null bytes), Content-Type: null
    66POST(""): POST(0 bytes), Content-Type: application/xml
    7 POST(null): POST(0 bytes), Content-Type: application/octet-stream
     7POST(null): POST(0 bytes), Content-Type: application/x-www-form-urlencoded
    88POST("123"): POST(3 bytes), Content-Type: application/xml
    99PUT(""): PUT(0 bytes), Content-Type: application/xml
  • trunk/LayoutTests/platform/qt/http/tests/xmlhttprequest/workers/methods-expected.txt

    r97973 r129234  
    55GET("123"): GET(null bytes), Content-Type: null
    66POST(""): POST(0 bytes), Content-Type: application/xml
    7 POST(null): POST(0 bytes), Content-Type: application/octet-stream
     7POST(null): POST(0 bytes), Content-Type: application/x-www-form-urlencoded
    88POST("123"): POST(3 bytes), Content-Type: application/xml
    99PUT(""): PUT(0 bytes), Content-Type: application/xml
  • trunk/LayoutTests/platform/qt/http/tests/xmlhttprequest/workers/shared-worker-methods-async-expected.txt

    r97973 r129234  
    55GET("123"): GET(null bytes), Content-Type: null
    66POST(""): POST(0 bytes), Content-Type: application/xml
    7 POST(null): POST(0 bytes), Content-Type: application/octet-stream
     7POST(null): POST(0 bytes), Content-Type: application/x-www-form-urlencoded
    88POST("123"): POST(3 bytes), Content-Type: application/xml
    99PUT(""): PUT(0 bytes), Content-Type: application/xml
Note: See TracChangeset for help on using the changeset viewer.