#include "third_party/blink/renderer/core/html/fenced_frame/html_fenced_frame_element.h"
#include "base/test/metrics/histogram_tester.h"
#include "base/test/scoped_feature_list.h"
#include "third_party/blink/public/common/features.h"
#include "third_party/blink/public/common/fenced_frame/fenced_frame_utils.h"
#include "third_party/blink/public/common/frame/fenced_frame_sandbox_flags.h"
#include "third_party/blink/public/platform/web_runtime_features.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_binding_for_core.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/execution_context/security_context.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/frame/screen.h"
#include "third_party/blink/renderer/core/html/fenced_frame/fenced_frame_ad_sizes.h"
#include "third_party/blink/renderer/core/html/fenced_frame/fenced_frame_config.h"
#include "third_party/blink/renderer/core/html/html_iframe_element.h"
#include "third_party/blink/renderer/core/testing/core_unit_test_helper.h"
#include "third_party/blink/renderer/platform/testing/runtime_enabled_features_test_helpers.h"
namespace blink {
class HTMLFencedFrameElementTest : private ScopedFencedFramesForTest,
public RenderingTest { … };
TEST_F(HTMLFencedFrameElementTest, FreezeSizeLayoutZoomFactor) { … }
TEST_F(HTMLFencedFrameElementTest, CoerceFrameSizeTest) { … }
TEST_F(HTMLFencedFrameElementTest, HistogramTestInsecureContext) { … }
TEST_F(HTMLFencedFrameElementTest, HistogramTestIncompatibleUrlHTTPDefault) { … }
TEST_F(HTMLFencedFrameElementTest, HistogramTestIncompatibleUrlOpaque) { … }
TEST_F(HTMLFencedFrameElementTest, HistogramTestResizeAfterFreeze) { … }
TEST_F(HTMLFencedFrameElementTest, HistogramTestSandboxFlags) { … }
TEST_F(HTMLFencedFrameElementTest, HistogramTestSandboxFlagsInIframe) { … }
TEST_F(HTMLFencedFrameElementTest, HistogramTestCanLoadOpaqueURL) { … }
}