We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 786fff5 commit 5d39a2bCopy full SHA for 5d39a2b
material.angular.io/src/app/shared/plunker/plunker-button.ts
@@ -32,6 +32,12 @@ export class PlunkerButton {
32
constructor(private plunkerWriter: PlunkerWriter) {}
33
34
openPlunker(): void {
35
+ // When the form is submitted, it must be in the document body. The standard of forms is not
36
+ // to submit if it is detached from the document. See the following chromium commit for
37
+ // more details:
38
+ // https://chromium.googlesource.com/chromium/src/+/962c2a22ddc474255c776aefc7abeba00edc7470%5E!
39
+ document.body.appendChild(this.plunkerForm);
40
this.plunkerForm.submit();
41
+ document.body.removeChild(this.plunkerForm);
42
}
43
0 commit comments