Changeset 195507 in webkit


Ignore:
Timestamp:
Jan 22, 2016 11:13:53 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r195493.
https://bugs.webkit.org/show_bug.cgi?id=153397

Broke authenticaiton tests (leaks credentials) (Requested by
ap on #webkit).

Reverted changeset:

"LayoutTest http/tests/security/xssAuditor/embed-tag-in-path-
unterminated.html crashing"
https://bugs.webkit.org/show_bug.cgi?id=153250
http://trac.webkit.org/changeset/195493

Location:
trunk
Files:
5 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r195501 r195507  
     12016-01-22  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r195493.
     4        https://bugs.webkit.org/show_bug.cgi?id=153397
     5
     6        Broke authenticaiton tests (leaks credentials) (Requested by
     7        ap on #webkit).
     8
     9        Reverted changeset:
     10
     11        "LayoutTest http/tests/security/xssAuditor/embed-tag-in-path-
     12        unterminated.html crashing"
     13        https://bugs.webkit.org/show_bug.cgi?id=153250
     14        http://trac.webkit.org/changeset/195493
     15
    1162016-01-20  Ryosuke Niwa  <rniwa@webkit.org>
    217
  • trunk/Source/WebCore/ChangeLog

    r195501 r195507  
     12016-01-22  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r195493.
     4        https://bugs.webkit.org/show_bug.cgi?id=153397
     5
     6        Broke authenticaiton tests (leaks credentials) (Requested by
     7        ap on #webkit).
     8
     9        Reverted changeset:
     10
     11        "LayoutTest http/tests/security/xssAuditor/embed-tag-in-path-
     12        unterminated.html crashing"
     13        https://bugs.webkit.org/show_bug.cgi?id=153250
     14        http://trac.webkit.org/changeset/195493
     15
    1162016-01-20  Ryosuke Niwa  <rniwa@webkit.org>
    217
  • trunk/Source/WebCore/platform/network/CredentialStorage.cpp

    r195493 r195507  
    124124        directoryURL = directoryURL.substring(0, (index == directoryURLPathStart) ? index + 1 : index);
    125125        ASSERT(directoryURL.length() > directoryURLPathStart);
     126        ASSERT(directoryURL.length() == directoryURLPathStart + 1 || directoryURL[directoryURL.length() - 1] != '/');
    126127    }
    127128}
Note: See TracChangeset for help on using the changeset viewer.