https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 93776cefe33e150432abe256951e35e385ba82e2 authored by Ian Kilpatrick on 12 April 2018, 12:08:38 UTC
[css-layout-api] Fix DCHECK with the custom layout and multicol.
Tip revision: 93776ce
frame-ancestors-nested-cross-in-same-self-block.html
<!DOCTYPE html>
<html>
<head>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <script src="support/frame-ancestors-test.sub.js"></script>
</head>
<body>
    <script>
        test = async_test("A 'frame-ancestors' CSP directive with a value 'same' should block render in same-origin nested frames.");

        testNestedIFrame("'self'", SAME_ORIGIN, CROSS_ORIGIN, EXPECT_BLOCK);
    </script>
</body>
</html>
back to top