| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 Document* document = m_frame->document(); | 135 Document* document = m_frame->document(); |
| 136 | 136 |
| 137 if (urlString.isNull()) | 137 if (urlString.isNull()) |
| 138 return document->url(); | 138 return document->url(); |
| 139 if (urlString.isEmpty()) | 139 if (urlString.isEmpty()) |
| 140 return document->baseURL(); | 140 return document->baseURL(); |
| 141 | 141 |
| 142 return KURL(document->baseURL(), urlString); | 142 return KURL(document->baseURL(), urlString); |
| 143 } | 143 } |
| 144 | 144 |
| 145 void History::stateObjectAdded(PassRefPtr<SerializedScriptValue> data, const Str
ing& /* title */, const String& urlString, SameDocumentNavigationSource sameDocu
mentNavigationSource, ExceptionState& es) | 145 void History::stateObjectAdded(PassRefPtr<SerializedScriptValue> data, const Str
ing& /* title */, const String& urlString, SameDocumentNavigationSource sameDocu
mentNavigationSource, ExceptionState& exceptionState) |
| 146 { | 146 { |
| 147 if (!m_frame || !m_frame->page()) | 147 if (!m_frame || !m_frame->page()) |
| 148 return; | 148 return; |
| 149 | 149 |
| 150 KURL fullURL = urlForState(urlString); | 150 KURL fullURL = urlForState(urlString); |
| 151 if (!fullURL.isValid() || !m_frame->document()->securityOrigin()->canRequest
(fullURL)) { | 151 if (!fullURL.isValid() || !m_frame->document()->securityOrigin()->canRequest
(fullURL)) { |
| 152 // We can safely expose the URL to JavaScript, as a) no redirection take
s place: JavaScript already had this URL, b) JavaScript can only access a same-o
rigin History object. | 152 // We can safely expose the URL to JavaScript, as a) no redirection take
s place: JavaScript already had this URL, b) JavaScript can only access a same-o
rigin History object. |
| 153 es.throwSecurityError("A history state object with URL '" + fullURL.elid
edString() + "' cannot be created in a document with origin '" + m_frame->docume
nt()->securityOrigin()->toString() + "'."); | 153 exceptionState.throwSecurityError("A history state object with URL '" +
fullURL.elidedString() + "' cannot be created in a document with origin '" + m_f
rame->document()->securityOrigin()->toString() + "'."); |
| 154 return; | 154 return; |
| 155 } | 155 } |
| 156 m_frame->loader().updateForSameDocumentNavigation(fullURL, sameDocumentNavig
ationSource, data, FrameLoader::DoNotUpdateBackForwardList); | 156 m_frame->loader().updateForSameDocumentNavigation(fullURL, sameDocumentNavig
ationSource, data, FrameLoader::DoNotUpdateBackForwardList); |
| 157 } | 157 } |
| 158 | 158 |
| 159 } // namespace WebCore | 159 } // namespace WebCore |
| OLD | NEW |