Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[giow] (1) Let worker's self.location stringify, like window.location
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=12836 git-svn-id: http://svn.whatwg.org/webapps@6265 340c8d12-0b0e-0410-8428-c7bf67bfef74
- Loading branch information
|
||
<pre class=idl>interface <dfn id=workerlocation>WorkerLocation</dfn> { | ||
// <a href=#url-decomposition-idl-attributes>URL decomposition IDL attributes</a> | ||
readonly attribute DOMString <a href=#dom-workerlocation-href title=dom-WorkerLocation-href>href</a>; | ||
stringifier readonly attribute DOMString <a href=#dom-workerlocation-href title=dom-WorkerLocation-href>href</a>; | ||
readonly attribute DOMString <a href=#dom-workerlocation-protocol title=dom-WorkerLocation-protocol>protocol</a>; | ||
readonly attribute DOMString <a href=#dom-workerlocation-host title=dom-WorkerLocation-host>host</a>; | ||
readonly attribute DOMString <a href=#dom-workerlocation-hostname title=dom-WorkerLocation-hostname>hostname</a>; |
|
||
<pre class="idl">interface <dfn>WorkerLocation</dfn> { | ||
// <span>URL decomposition IDL attributes</span> | ||
readonly attribute DOMString <span title="dom-WorkerLocation-href">href</span>; | ||
stringifier readonly attribute DOMString <span title="dom-WorkerLocation-href">href</span>; | ||
readonly attribute DOMString <span title="dom-WorkerLocation-protocol">protocol</span>; | ||
readonly attribute DOMString <span title="dom-WorkerLocation-host">host</span>; | ||
readonly attribute DOMString <span title="dom-WorkerLocation-hostname">hostname</span>; |