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