| Index: core/html/HTMLLinkElement.idl
|
| diff --git a/core/html/HTMLLinkElement.idl b/core/html/HTMLLinkElement.idl
|
| index 25e900a7d231f26720d255fdcbc6835053234f91..6bcce34e2d40d5320dd395e91d1ec9116a365c04 100644
|
| --- a/core/html/HTMLLinkElement.idl
|
| +++ b/core/html/HTMLLinkElement.idl
|
| @@ -21,19 +21,19 @@
|
|
|
| interface HTMLLinkElement : HTMLElement {
|
| [Reflect] attribute boolean disabled;
|
| - [Reflect] attribute DOMString charset;
|
| - [Reflect, URL] attribute DOMString href;
|
| - [Reflect] attribute DOMString hreflang;
|
| - [Reflect] attribute DOMString media;
|
| - [Reflect] attribute DOMString rel;
|
| - [Reflect] attribute DOMString rev;
|
| - [CustomSetter] attribute DOMSettableTokenList sizes;
|
| - [Reflect] attribute DOMString target;
|
| - [Reflect] attribute DOMString type;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString charset;
|
| + [Reflect, TreatNullAs=NullString, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString href;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString hreflang;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString media;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString rel;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString rev;
|
| + [PutForwards=value] readonly attribute DOMSettableTokenList sizes;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString target;
|
| + [Reflect, TreatNullAs=NullString] attribute DOMString type;
|
|
|
| // DOM Level 2 Style
|
| readonly attribute StyleSheet sheet;
|
|
|
| - [EnabledAtRuntime=HTMLImports] readonly attribute Document import;
|
| + [RuntimeEnabled=HTMLImports] readonly attribute Document import;
|
| };
|
|
|
|
|