Skip to content

Commit

Permalink
Fix copypasta from "Merge URLUtils into Location"
Browse files Browse the repository at this point in the history
This fixes some copypasta introduced in f0a7365
  • Loading branch information
sideshowbarker authored and domenic committed Dec 20, 2015
1 parent 199c0c0 commit 676b621
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -80584,57 +80584,57 @@ State: <OUTPUT NAME=I>1</OUTPUT> <INPUT VALUE="Increment" TYPE=BUTTON O

<dl class="domintro">
<dt><var>location</var> . <code data-x="">toString()</code></dt>
<dt><var>location</var> . <code subdfn data-x="dom-hyperlink-href">href</code></dt>
<dt><var>location</var> . <code subdfn data-x="dom-location-href">href</code></dt>
<dd>
<p>Returns the <code>Location</code> object's URL.</p>
<p>Can be set, to navigate to the given URL.</p>
</dd>

<dt><var>location</var> . <code subdfn data-x="dom-hyperlink-origin">origin</code></dt>
<dt><var>location</var> . <code subdfn data-x="dom-location-origin">origin</code></dt>
<dd>
<p>Returns the <code>Location</code> object's URL's origin.</p>
</dd>

<dt><var>location</var> . <code subdfn data-x="dom-hyperlink-protocol">protocol</code></dt>
<dt><var>location</var> . <code subdfn data-x="dom-location-protocol">protocol</code></dt>
<dd>
<p>Returns the <code>Location</code> object's URL's scheme.</p>
<p>Can be set, to navigate to the same URL with a changed scheme.</p>
</dd>

<dt><var>location</var> . <code subdfn data-x="dom-hyperlink-host">host</code></dt>
<dt><var>location</var> . <code subdfn data-x="dom-location-host">host</code></dt>
<dd>
<p>Returns the <code>Location</code> object's URL's host and port (if different from the default
port for the scheme).</p>
<p>Can be set, to navigate to the same URL with a changed host and port.</p>
</dd>

<dt><var>location</var> . <code subdfn data-x="dom-hyperlink-hostname">hostname</code></dt>
<dt><var>location</var> . <code subdfn data-x="dom-location-hostname">hostname</code></dt>
<dd>
<p>Returns the <code>Location</code> object's URL's host.</p>
<p>Can be set, to navigate to the same URL with a changed host.</p>
</dd>

<dt><var>location</var> . <code subdfn data-x="dom-hyperlink-port">port</code></dt>
<dt><var>location</var> . <code subdfn data-x="dom-location-port">port</code></dt>
<dd>
<p>Returns the <code>Location</code> object's URL's port.</p>
<p>Can be set, to navigate to the same URL with a changed port.</p>
</dd>

<dt><var>location</var> . <code subdfn data-x="dom-hyperlink-pathname">pathname</code></dt>
<dt><var>location</var> . <code subdfn data-x="dom-location-pathname">pathname</code></dt>
<dd>
<p>Returns the <code>Location</code> object's URL's path.</p>
<p>Can be set, to navigate to the same URL with a changed path.</p>
</dd>

<dt><var>location</var> . <code subdfn data-x="dom-hyperlink-search">search</code></dt>
<dt><var>location</var> . <code subdfn data-x="dom-location-search">search</code></dt>
<dd>
<p>Returns the <code>Location</code> object's URL's query (includes leading "<code
data-x="">?</code>" if non-empty).</p>
<p>Can be set, to navigate to the same URL with a changed query (ignores leading "<code
data-x="">?</code>").</p>
</dd>

<dt><var>location</var> . <code subdfn data-x="dom-hyperlink-hash">hash</code></dt>
<dt><var>location</var> . <code subdfn data-x="dom-location-hash">hash</code></dt>
<dd>
<p>Returns the <code>Location</code> object's URL's fragment (includes leading "<code
data-x="">#</code>" if non-empty).</p>
Expand Down

0 comments on commit 676b621

Please sign in to comment.