blob: 4be6b74229c17468a145296b92e8e96b8c6662f5 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/core/html/html_frame_element.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/dom/document.h"
namespace blink {
class HTMLFrameElementTest : public testing::Test {};
// Test that the correct container policy is constructed on a frame element.
// Frame elements do not have any container-policy related attributes, but the
// fullscreen feature should be unconditionally disabled.
TEST_F(HTMLFrameElementTest, DefaultContainerPolicy) {
Document* document = Document::CreateForTest();
const KURL document_url("http://example.com");
document->SetURL(document_url);
document->UpdateSecurityOrigin(SecurityOrigin::Create(document_url));
HTMLFrameElement* frame_element = HTMLFrameElement::Create(*document);
frame_element->setAttribute(html_names::kSrcAttr, "http://example.net/");
frame_element->UpdateContainerPolicyForTests();
const ParsedFeaturePolicy& container_policy =
frame_element->GetFramePolicy().container_policy;
EXPECT_EQ(1UL, container_policy.size());
// Fullscreen should be disabled in this frame
EXPECT_EQ(mojom::FeaturePolicyFeature::kFullscreen,
container_policy[0].feature);
EXPECT_EQ(0UL, container_policy[0].values.size());
EXPECT_GE(PolicyValue(false), container_policy[0].fallback_value);
}
} // namespace blink