diff --git a/master/interact.html b/master/interact.html index 5c8b13a5..e997e3f6 100644 --- a/master/interact.html +++ b/master/interact.html @@ -1155,15 +1155,12 @@

Interface SVGScriptElement

[Exposed=Window]
 interface SVGScriptElement : SVGElement {
-  attribute DOMString type;
+  [Reflect] attribute DOMString type;
   attribute DOMString? crossOrigin;
 };
 
 SVGScriptElement includes SVGURIReference;
-

The type IDL attribute -reflects the 'type' content attribute.

-

The crossOrigin IDL attribute reflects the 'crossorigin' content attribute.

diff --git a/master/linking.html b/master/linking.html index 39a3cde6..de04d4a0 100644 --- a/master/linking.html +++ b/master/linking.html @@ -1145,13 +1145,13 @@

Interface SVGAElement

[Exposed=Window]
 interface SVGAElement : SVGGraphicsElement {
-  [SameObject] readonly attribute SVGAnimatedString target;
-  attribute DOMString download;
-  attribute USVString ping;
-  attribute DOMString rel;
-  [SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
-  attribute DOMString hreflang;
-  attribute DOMString type;
+  [Reflect, SameObject] readonly attribute SVGAnimatedString target;
+  [Reflect] attribute DOMString download;
+  [Reflect] attribute USVString ping;
+  [Reflect] attribute DOMString rel;
+  [Reflect="rel", SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
+  [Reflect] attribute DOMString hreflang;
+  [Reflect] attribute DOMString type;
 
   attribute DOMString referrerPolicy;
 };
@@ -1159,17 +1159,6 @@ 

Interface SVGAElement

SVGAElement includes SVGURIReference; SVGAElement includes HTMLHyperlinkElementUtils;
-

The target, - download, - ping, - rel, - hreflang, - type, - IDL attributes -reflect the content attributes of the same name.

-

The relList - IDL attribute -reflects the 'rel' content attribute.

The referrerPolicy IDL attribute reflects the 'referrerpolicy' content attribute, diff --git a/master/styling.html b/master/styling.html index 00cb7205..dbe6aab4 100644 --- a/master/styling.html +++ b/master/styling.html @@ -726,20 +726,14 @@

Interface SVGStyleElement

[Exposed=Window]
 interface SVGStyleElement : SVGElement {
-  attribute DOMString type;
-  attribute DOMString media;
-  attribute DOMString title;
+  [Reflect] attribute DOMString type;
+  [Reflect] attribute DOMString media;
+  [Reflect] attribute DOMString title;
   attribute boolean disabled;
 };
 
 SVGStyleElement includes LinkStyle;
-

The type, -media and -title IDL attributes -reflect the 'type', 'media' and 'title' -content attributes, respectively.

-