We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cc9583 commit aa986c0Copy full SHA for aa986c0
packages/iframe-coordinator/src/FrameManager.ts
@@ -12,7 +12,7 @@ import {
12
PartialMsg,
13
} from "./messages/LabeledMsg";
14
15
-const IFRAME_STYLE = "frame-router iframe { width: 100%; height: 100%; }";
+const IFRAME_STYLE = "frame-router iframe { width: 100%; height: 100%; border: 0px }";
16
17
/** @internal default iframe sandbox attributes */
18
const DEFAULT_SANDBOX = [
@@ -59,7 +59,6 @@ class FrameManager {
59
this._frameLocation = "about:blank";
60
61
this._iframe = this._window.document.createElement("iframe");
62
- this._iframe.setAttribute("frameborder", "0");
63
64
if (!style) {
65
style = this._window.document.createElement("style");
0 commit comments