[Webkit-unassigned] [Bug 16692] Acid3 expects \u escapes to work in data: urls

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jan 1 02:11:14 PST 2008


http://bugs.webkit.org/show_bug.cgi?id=16692





------- Comment #2 from eric at webkit.org  2008-01-01 02:11 PDT -------
I expect this is the problem right here:

KURL::init()

    // for compatibility with Win IE, we must treat backslashes as if they were
slashes, as long as we're not dealing with the javascript: schema
    DeprecatedString substitutedRelative;
    bool shouldSubstituteBackslashes = relative.contains('\\') &&
!relative.startsWith("javascript:", false);
    if (shouldSubstituteBackslashes) {
        substitutedRelative = substituteBackslashes(relative);
    }

That check is obviously failing (or not getting hit for this code path).


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list