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 b3d9ffd commit c3d23a2Copy full SHA for c3d23a2
Libraries/LibWeb/HTML/PolicyContainers.cpp
@@ -85,7 +85,10 @@ GC::Ref<PolicyContainer> PolicyContainer::clone(GC::Heap& heap) const
85
// 4. Set clone's referrer policy to policyContainer's referrer policy.
86
clone->referrer_policy = referrer_policy;
87
88
- // 5. Return clone.
+ // 5. Set clone's integrity policy to a copy of policyContainer's integrity policy.
89
+ clone->integrity_policy = integrity_policy;
90
+
91
+ // 6. Return clone.
92
return clone;
93
}
94
0 commit comments