mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
use USVStrings instead of DOMString for urls in Node and Document
This commit is contained in:
parent
0173cabbb6
commit
766ad5e092
4 changed files with 16 additions and 13 deletions
|
@ -13,10 +13,10 @@ interface Document : Node {
|
|||
[SameObject]
|
||||
readonly attribute DOMImplementation implementation;
|
||||
[Constant]
|
||||
readonly attribute DOMString URL;
|
||||
readonly attribute USVString URL;
|
||||
readonly attribute Element? activeElement;
|
||||
[Constant]
|
||||
readonly attribute DOMString documentURI;
|
||||
readonly attribute USVString documentURI;
|
||||
readonly attribute DOMString compatMode;
|
||||
readonly attribute DOMString characterSet;
|
||||
readonly attribute DOMString charset; // legacy alias of .characterSet
|
||||
|
|
|
@ -26,7 +26,7 @@ interface Node : EventTarget {
|
|||
readonly attribute DOMString nodeName;
|
||||
|
||||
[Pure]
|
||||
readonly attribute DOMString baseURI;
|
||||
readonly attribute USVString baseURI;
|
||||
|
||||
[Pure]
|
||||
readonly attribute Document? ownerDocument;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue