Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

URI to URL to address #11450 #11765

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Next

URL to URI

  • Loading branch information
Coder206 committed Jun 17, 2016
commit 5645ff95e3da182cdd810236a81b5b470df5e9ca
@@ -64,7 +64,7 @@ dictionary BrowserElementErrorEventDetail {
};

dictionary BrowserElementLocationChangeEventDetail {
DOMString uri;
DOMString url;
boolean canGoBack;
boolean canGoForward;
};
@@ -39,7 +39,7 @@
var action_idx = 0;

iframe.addEventListener("mozbrowserlocationchange", e => {
received_events.push(e.detail.uri);
received_events.push(e.detail.url);
received_events.push(e.detail.canGoBack);
received_events.push(e.detail.canGoForward);

ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.