Skip to content

Commit

Permalink
Use USVString for document.domain/referrer/cookie
Browse files Browse the repository at this point in the history
Fixes #970.
  • Loading branch information
annevk committed Apr 4, 2016
1 parent 78806b0 commit 8170d82
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -8481,9 +8481,9 @@ typedef (<span>HTMLScriptElement</span> or <span>SVGScriptElement</span>) <dfn>H
partial /*sealed*/ interface <dfn>Document</dfn> {
// <span>resource metadata management</span>
[PutForwards=<span data-x="dom-location-href">href</span>, Unforgeable] readonly attribute <span>Location</span>? <span data-x="dom-document-location">location</span>;
attribute DOMString <span data-x="dom-document-domain">domain</span>;
readonly attribute DOMString <span data-x="dom-document-referrer">referrer</span>;
attribute DOMString <span data-x="dom-document-cookie">cookie</span>;
attribute USVString <span data-x="dom-document-domain">domain</span>;
readonly attribute USVString <span data-x="dom-document-referrer">referrer</span>;
attribute USVString <span data-x="dom-document-cookie">cookie</span>;
readonly attribute DOMString <span data-x="dom-document-lastModified">lastModified</span>;
readonly attribute <span>DocumentReadyState</span> <span data-x="dom-document-readyState">readyState</span>;

Expand Down

0 comments on commit 8170d82

Please sign in to comment.