mirror of
https://github.com/servo/servo.git
synced 2025-07-17 20:33:40 +01:00
Fix the type of HTMLIFrameElement.sandbox <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #11598 (github issue number if applicable). <!-- Either: --> - [X] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11720) <!-- Reviewable:end -->
38 lines
1.4 KiB
Text
38 lines
1.4 KiB
Text
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
// https://html.spec.whatwg.org/multipage/#htmliframeelement
|
|
interface HTMLIFrameElement : HTMLElement {
|
|
attribute DOMString src;
|
|
// attribute DOMString srcdoc;
|
|
// attribute DOMString name;
|
|
[SameObject, PutForwards=value]
|
|
readonly attribute DOMTokenList sandbox;
|
|
// attribute boolean seamless;
|
|
// attribute boolean allowFullscreen;
|
|
attribute DOMString width;
|
|
attribute DOMString height;
|
|
readonly attribute Document? contentDocument;
|
|
readonly attribute WindowProxy? contentWindow;
|
|
|
|
// also has obsolete members
|
|
};
|
|
|
|
// https://html.spec.whatwg.org/multipage/#HTMLIFrameElement-partial
|
|
partial interface HTMLIFrameElement {
|
|
// attribute DOMString align;
|
|
// attribute DOMString scrolling;
|
|
// attribute DOMString frameBorder;
|
|
// attribute DOMString longDesc;
|
|
|
|
//[TreatNullAs=EmptyString] attribute DOMString marginHeight;
|
|
//[TreatNullAs=EmptyString] attribute DOMString marginWidth;
|
|
};
|
|
|
|
partial interface HTMLIFrameElement {
|
|
[Func="::dom::window::Window::global_is_mozbrowser"]
|
|
attribute boolean mozbrowser;
|
|
};
|
|
|
|
HTMLIFrameElement implements BrowserElement;
|