Index: third_party/WebKit/Source/core/html/HTMLIFrameElement.idl |
diff --git a/third_party/WebKit/Source/core/html/HTMLIFrameElement.idl b/third_party/WebKit/Source/core/html/HTMLIFrameElement.idl |
index 0a43b108ad1fd5e6c85bb2e2e9a51784fe94be08..c234368d84441521ffc808a2b17bc9d7a77b0c1c 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLIFrameElement.idl |
+++ b/third_party/WebKit/Source/core/html/HTMLIFrameElement.idl |
@@ -29,6 +29,10 @@ interface HTMLIFrameElement : HTMLElement { |
[CEReactions, Reflect] attribute boolean allowFullscreen; |
[CEReactions, Reflect] attribute DOMString width; |
[CEReactions, Reflect] attribute DOMString height; |
+ |
+ // Feature Policy allow attribute |
+ [CEReactions, PutForwards=value, RuntimeEnabled=FeaturePolicy] readonly attribute DOMTokenList allow; |
Rick Byers
2017/02/09 20:59:58
nit: put RuntimeEnabled first to be consistent wit
lunalu1
2017/02/09 23:19:04
My bad, should have noticed that. Thanks
|
+ |
[CheckSecurity=ReturnValue] readonly attribute Document? contentDocument; |
readonly attribute Window? contentWindow; |
[CheckSecurity=ReturnValue, RaisesException] Document? getSVGDocument(); |