Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "core/html/HTMLFrameElement.h" | |
| 6 | |
| 7 #include "core/dom/Document.h" | |
| 8 #include "testing/gtest/include/gtest/gtest.h" | |
| 9 | |
| 10 namespace blink { | |
| 11 | |
| 12 class HTMLFrameElementTest : public ::testing::Test {}; | |
| 13 | |
| 14 // Test that the correct container policy is constructed on a frame element. | |
| 15 // Frame elements do not have any container-policy related attributes, but the | |
| 16 // fullscreen feature should be unconditionally disabled. | |
| 17 TEST_F(HTMLFrameElementTest, DefaultContainerPolicy) { | |
| 18 Document* document = Document::Create(); | |
| 19 KURL document_url = KURL(KURL(), "http://example.com"); | |
| 20 document->SetURL(document_url); | |
| 21 document->UpdateSecurityOrigin(SecurityOrigin::Create(document_url)); | |
| 22 | |
| 23 HTMLFrameElement* frame_element = HTMLFrameElement::Create(*document); | |
| 24 | |
| 25 frame_element->setAttribute(HTMLNames::srcAttr, "http://example.net/"); | |
| 26 frame_element->UpdateContainerPolicyForTests(); | |
| 27 | |
| 28 const WebParsedFeaturePolicy& container_policy = | |
| 29 frame_element->ContainerPolicy(); | |
| 30 EXPECT_EQ(1UL, container_policy.size()); | |
| 31 // Fullscreen should be disabled in this frame | |
| 32 EXPECT_EQ(WebFeaturePolicyFeature::kFullscreen, container_policy[0].feature); | |
|
foolip
2017/06/13 14:59:30
In addition to testing that the low-level fields w
iclelland
2017/06/13 18:36:47
Without actually loading a document into the frame
| |
| 33 EXPECT_FALSE(container_policy[0].matches_all_origins); | |
| 34 EXPECT_EQ(0UL, container_policy[0].origins.size()); | |
| 35 } | |
| 36 | |
| 37 } // namespace blink | |
| OLD | NEW |