Changeset 54264 in webkit


Ignore:
Timestamp:
Feb 2, 2010 4:54:13 PM (14 years ago)
Author:
levin@chromium.org
Message:

2010-02-02 David Levin <levin@chromium.org>

No review, rolling out r54245.
http://trac.webkit.org/changeset/54245
https://bugs.webkit.org/show_bug.cgi?id=34492

This patch seems to have broken thousands of chromium tests on
Windows (and since it was for chromium, I'm rolling it out).

  • dom/Element.cpp: (WebCore::Element::baseURI):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r54263 r54264  
     12010-02-02  David Levin  <levin@chromium.org>
     2
     3        No review, rolling out r54245.
     4        http://trac.webkit.org/changeset/54245
     5        https://bugs.webkit.org/show_bug.cgi?id=34492
     6
     7        This patch seems to have broken thousands of chromium tests on
     8        Windows (and since it was for chromium, I'm rolling it out).
     9
     10        * dom/Element.cpp:
     11        (WebCore::Element::baseURI):
     12
    1132010-02-02  Steve Falkenburg  <sfalken@apple.com>
    214
  • trunk/WebCore/dom/Element.cpp

    r54245 r54264  
    703703KURL Element::baseURI() const
    704704{
    705     const AtomicString& baseAttribute = getAttribute(baseAttr);
    706     KURL base(KURL(), baseAttribute);
     705    KURL base(KURL(), getAttribute(baseAttr));
    707706    if (!base.protocol().isEmpty())
    708707        return base;
     
    716715        return base;
    717716
    718     return KURL(parentBase, baseAttribute);
     717    return KURL(parentBase, base.string());
    719718}
    720719
Note: See TracChangeset for help on using the changeset viewer.