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 1c59b30 commit d242753Copy full SHA for d242753
src/core/support.js
@@ -3,6 +3,11 @@ define([
3
"../var/support"
4
], function( document, support ) {
5
6
+// Support: Safari 8+
7
+// In Safari 8 documents created via document.implementation.createHTMLDocument
8
+// collapse sibling forms: the second one becomes a child of the first one.
9
+// Because of that, this security measure has to be disabled in Safari 8.
10
+// https://bugs.webkit.org/show_bug.cgi?id=137337
11
support.createHTMLDocument = (function() {
12
var body = document.implementation.createHTMLDocument( "" ).body;
13
body.innerHTML = "<form></form><form></form>";
0 commit comments