summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/html/HTMLSourceElement.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/html/HTMLSourceElement.idl')
-rw-r--r--chromium/third_party/WebKit/Source/core/html/HTMLSourceElement.idl9
1 files changed, 7 insertions, 2 deletions
diff --git a/chromium/third_party/WebKit/Source/core/html/HTMLSourceElement.idl b/chromium/third_party/WebKit/Source/core/html/HTMLSourceElement.idl
index 4e10349051e..45f76b93977 100644
--- a/chromium/third_party/WebKit/Source/core/html/HTMLSourceElement.idl
+++ b/chromium/third_party/WebKit/Source/core/html/HTMLSourceElement.idl
@@ -26,7 +26,12 @@
[
RuntimeEnabled=Media
] interface HTMLSourceElement : HTMLElement {
- [Reflect, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString src;
+ [Reflect, URL, LogActivity=SetterOnly] attribute DOMString src;
attribute DOMString type;
- attribute DOMString media;
+
+ [Reflect, RuntimeEnabled=Picture] attribute DOMString srcset;
+ [Reflect, RuntimeEnabled=Picture] attribute DOMString sizes;
+ [Reflect, RuntimeEnabled=Picture] attribute DOMString media;
+
+ [Reflect, RuntimeEnabled=SubresourceIntegrity] attribute DOMString integrity;
};