| 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..862f9aa6a53bd8a5c95346cbdbddb7ab84d0f67a 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLIFrameElement.idl
|
| +++ b/third_party/WebKit/Source/core/html/HTMLIFrameElement.idl
|
| @@ -29,6 +29,7 @@ interface HTMLIFrameElement : HTMLElement {
|
| [CEReactions, Reflect] attribute boolean allowFullscreen;
|
| [CEReactions, Reflect] attribute DOMString width;
|
| [CEReactions, Reflect] attribute DOMString height;
|
| +
|
| [CheckSecurity=ReturnValue] readonly attribute Document? contentDocument;
|
| readonly attribute Window? contentWindow;
|
| [CheckSecurity=ReturnValue, RaisesException] Document? getSVGDocument();
|
| @@ -38,6 +39,9 @@ interface HTMLIFrameElement : HTMLElement {
|
| // https://w3c.github.io/webappsec-csp/embedded/#dom-htmliframeelement-csp
|
| [RuntimeEnabled=EmbedderCSPEnforcement, CEReactions, Reflect] attribute DOMString csp;
|
|
|
| + // Feature Policy allow attribute
|
| + // https://wicg.github.io/feature-policy/
|
| + [RuntimeEnabled=FeaturePolicy, CEReactions, PutForwards=value] readonly attribute DOMTokenList allow;
|
| // obsolete members
|
| // https://html.spec.whatwg.org/#HTMLIFrameElement-partial
|
| [CEReactions, Reflect] attribute DOMString align;
|
|
|