Changeset 175399 in webkit


Ignore:
Timestamp:
Oct 30, 2014 5:16:12 PM (9 years ago)
Author:
commit-queue@webkit.org
Message:

Layout Test http/tests/xmlhttprequest/cross-origin-redirect-responseURL.html is failing.
https://bugs.webkit.org/show_bug.cgi?id=138072

Patch by Shivakumar JM <shiva.jm@samsung.com> on 2014-10-30
Reviewed by Alexey Proskuryakov.

  • http/tests/xmlhttprequest/cross-origin-redirect-responseURL-expected.txt:
  • http/tests/xmlhttprequest/cross-origin-redirect-responseURL.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r175394 r175399  
     12014-10-30  Shivakumar JM  <shiva.jm@samsung.com>
     2
     3        Layout Test http/tests/xmlhttprequest/cross-origin-redirect-responseURL.html is failing.
     4        https://bugs.webkit.org/show_bug.cgi?id=138072
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * http/tests/xmlhttprequest/cross-origin-redirect-responseURL-expected.txt:
     9        * http/tests/xmlhttprequest/cross-origin-redirect-responseURL.html:
     10
    1112014-10-30  Roger Fong  <roger_fong@apple.com>
    212
  • trunk/LayoutTests/http/tests/xmlhttprequest/cross-origin-redirect-responseURL-expected.txt

    r175053 r175399  
    4040req.readyState = 1: responseURL =
    4141PASS responseURL is ""
    42 req.readyState = 2: responseURL = http://127.0.0.1:8000/xmlhttprequest/resources/redirect-cors.php
    43 req.readyState = 4: responseURL = http://127.0.0.1:8000/xmlhttprequest/resources/redirect-cors.php
    44 PASS responseURL is "http://127.0.0.1:8000/xmlhttprequest/resources/redirect-cors.php"
     42req.readyState = 2: responseURL = http://127.0.0.1:8000/xmlhttprequest/resources/get.txt
     43req.readyState = 3: responseURL = http://127.0.0.1:8000/xmlhttprequest/resources/get.txt
     44req.readyState = 4: responseURL = http://127.0.0.1:8000/xmlhttprequest/resources/get.txt
     45PASS responseURL is "http://127.0.0.1:8000/xmlhttprequest/resources/get.txt"
    4546req.readyState = 1: responseURL =
    4647PASS successfullyParsed is true
  • trunk/LayoutTests/http/tests/xmlhttprequest/cross-origin-redirect-responseURL.html

    r175053 r175399  
    4949    shouldBeEqualToString('responseURL', 'http://127.0.0.1:8000/xmlhttprequest/resources/redirect.php?url=http://localhost:22/');
    5050
    51     return runTest('resources/redirect-cors.php', 'text');
     51    return runTest('resources/redirect-cors.php?url=http://127.0.0.1:8000/xmlhttprequest/resources/get.txt', 'text');
    5252}).then(function(req) {
    5353    window.responseURL = req.responseURL;
    54     shouldBeEqualToString('responseURL', 'http://127.0.0.1:8000/xmlhttprequest/resources/redirect-cors.php');
     54    shouldBeEqualToString('responseURL', 'http://127.0.0.1:8000/xmlhttprequest/resources/get.txt');
    5555
    5656    req.open('GET', 'http://127.0.0.1:8000/xmlhttprequest/resources/not-found.txt');
Note: See TracChangeset for help on using the changeset viewer.