From 8170d82a2fc93c8ff7981c54aa4ccafd54204552 Mon Sep 17 00:00:00 2001 From: Anne van Kesteren Date: Mon, 4 Apr 2016 09:14:42 +0200 Subject: [PATCH] Use USVString for document.domain/referrer/cookie Fixes #970. --- source | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source b/source index ada517138d3..1e80e3984aa 100644 --- a/source +++ b/source @@ -8481,9 +8481,9 @@ typedef (HTMLScriptElement or SVGScriptElement) H partial /*sealed*/ interface Document { // resource metadata management [PutForwards=href, Unforgeable] readonly attribute Location? location; - attribute DOMString domain; - readonly attribute DOMString referrer; - attribute DOMString cookie; + attribute USVString domain; + readonly attribute USVString referrer; + attribute USVString cookie; readonly attribute DOMString lastModified; readonly attribute DocumentReadyState readyState;