Searched refs:oldURL (Results 1 - 7 of 7) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/dom/
H A DHashChangeEvent.h34 String oldURL; member in struct:WebCore::HashChangeEventInit
45 static PassRefPtr<HashChangeEvent> create(const String& oldURL, const String& newURL) argument
47 return adoptRef(new HashChangeEvent(oldURL, newURL));
55 void initHashChangeEvent(const AtomicString& eventType, bool canBubble, bool cancelable, const String& oldURL, const String& newURL) argument
62 m_oldURL = oldURL;
66 const String& oldURL() const { return m_oldURL; } function in class:WebCore::HashChangeEvent
76 HashChangeEvent(const String& oldURL, const String& newURL) argument
78 , m_oldURL(oldURL)
85 , m_oldURL(initializer.oldURL)
H A DHashChangeEvent.idl27 [Default=Undefined] optional DOMString oldURL,
29 [InitializedByEventConstructor] readonly attribute DOMString oldURL;
H A DDocument.h1109 void enqueueHashchangeEvent(const String& oldURL, const String& newURL);
H A DDocument.cpp5057 void Document::enqueueHashchangeEvent(const String& oldURL, const String& newURL) argument
5059 enqueueWindowEvent(HashChangeEvent::create(oldURL, newURL));
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DResourceCollection.js134 var oldURL = event.data.oldURL;
135 console.assert(oldURL);
136 if (!oldURL)
140 delete this._resourceURLMap[oldURL];
H A DResource.js468 var oldURL = this._url;
474 if (oldURL !== url) {
478 this.dispatchEventToListeners(WebInspector.Resource.Event.URLDidChange, {oldURL: oldURL});
491 var oldURL = this._url;
513 if (oldURL !== url) {
517 this.dispatchEventToListeners(WebInspector.Resource.Event.URLDidChange, {oldURL: oldURL});
/macosx-10.10/WebCore-7600.1.25/loader/
H A DFrameLoader.cpp1076 URL oldURL = m_frame.document()->url(); local
1095 bool hashChange = equalIgnoringFragmentIdentifier(url, oldURL) && url.fragmentIdentifier() != oldURL.fragmentIdentifier();
1127 m_frame.document()->enqueueHashchangeEvent(oldURL, url);

Completed in 274 milliseconds