| Index: Source/core/dom/URLUtils.idl
 | 
| diff --git a/Source/core/dom/URLUtils.idl b/Source/core/dom/URLUtils.idl
 | 
| index 5f0e115ab1229956fb0280bb2e5a03e6da5ef2e1..fc917fe76a825861197e8c2f45d0284dc3994bbe 100644
 | 
| --- a/Source/core/dom/URLUtils.idl
 | 
| +++ b/Source/core/dom/URLUtils.idl
 | 
| @@ -29,20 +29,20 @@
 | 
|      NoInterfaceObject, // Always used on target of 'implements'
 | 
|  ] interface URLUtils {
 | 
|      // FIXME: should be stringifier: http://crbug.com/306606
 | 
| -    // stringifier attribute ScalarValueString href;
 | 
| -    attribute ScalarValueString href;
 | 
| -    [NotEnumerable, ImplementedAs=href] ScalarValueString toString();
 | 
| -    readonly attribute ScalarValueString origin;
 | 
| +    // stringifier attribute USVString href;
 | 
| +    attribute USVString href;
 | 
| +    [NotEnumerable, ImplementedAs=href] USVString toString();
 | 
| +    readonly attribute USVString origin;
 | 
|  
 | 
| -    attribute ScalarValueString protocol;
 | 
| -    attribute ScalarValueString username;
 | 
| -    attribute ScalarValueString password;
 | 
| -    attribute ScalarValueString host;
 | 
| -    attribute ScalarValueString hostname;
 | 
| -    attribute ScalarValueString port;
 | 
| -    attribute ScalarValueString pathname;
 | 
| -    attribute ScalarValueString search;
 | 
| +    attribute USVString protocol;
 | 
| +    attribute USVString username;
 | 
| +    attribute USVString password;
 | 
| +    attribute USVString host;
 | 
| +    attribute USVString hostname;
 | 
| +    attribute USVString port;
 | 
| +    attribute USVString pathname;
 | 
| +    attribute USVString search;
 | 
|      // Not yet implemented.
 | 
|      // attribute URLSearchParams searchParams;
 | 
| -    attribute ScalarValueString hash;
 | 
| +    attribute USVString hash;
 | 
|  };
 | 
| 
 |