diff options
Diffstat (limited to 'testing/web-platform/tests/content-security-policy/frame-ancestors')
5 files changed, 5 insertions, 5 deletions
diff --git a/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-nested-cross-in-cross-self-block.html b/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-nested-cross-in-cross-self-block.html index 85b7f0efdc..eb7cbef866 100644 --- a/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-nested-cross-in-cross-self-block.html +++ b/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-nested-cross-in-cross-self-block.html @@ -7,7 +7,7 @@ </head> <body> <script> - test = async_test("A 'frame-ancestors' CSP directive with a value 'same' should block render in same-origin nested frames."); + test = async_test("A 'frame-ancestors' CSP directive with a value 'self' should block render in same-origin nested frames."); testNestedIFrame("'self'", CROSS_ORIGIN, CROSS_ORIGIN, EXPECT_BLOCK); </script> diff --git a/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-nested-cross-in-same-self-block.html b/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-nested-cross-in-same-self-block.html index da97339711..8f9d94e7d6 100644 --- a/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-nested-cross-in-same-self-block.html +++ b/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-nested-cross-in-same-self-block.html @@ -7,7 +7,7 @@ </head> <body> <script> - test = async_test("A 'frame-ancestors' CSP directive with a value 'same' should block render in same-origin nested frames."); + test = async_test("A 'frame-ancestors' CSP directive with a value 'self' should block render in same-origin nested frames."); testNestedIFrame("'self'", SAME_ORIGIN, CROSS_ORIGIN, EXPECT_BLOCK); </script> diff --git a/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-nested-same-in-cross-self-block.html b/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-nested-same-in-cross-self-block.html index bae5992e86..f9d32eb3ed 100644 --- a/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-nested-same-in-cross-self-block.html +++ b/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-nested-same-in-cross-self-block.html @@ -7,7 +7,7 @@ </head> <body> <script> - test = async_test("A 'frame-ancestors' CSP directive with a value 'same' should block render in same-origin nested frames."); + test = async_test("A 'frame-ancestors' CSP directive with a value 'self' should block render in same-origin nested frames."); testNestedIFrame("'self'", CROSS_ORIGIN, SAME_ORIGIN, EXPECT_BLOCK); </script> diff --git a/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-nested-same-in-same-self-allow.html b/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-nested-same-in-same-self-allow.html index 747c563696..a4271dfd92 100644 --- a/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-nested-same-in-same-self-allow.html +++ b/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-nested-same-in-same-self-allow.html @@ -7,7 +7,7 @@ </head> <body> <script> - test = async_test("A 'frame-ancestors' CSP directive with a value 'same' should block render in same-origin nested frames."); + test = async_test("A 'frame-ancestors' CSP directive with a value 'self' should block render in same-origin nested frames."); testNestedIFrame("'self'", SAME_ORIGIN, SAME_ORIGIN, EXPECT_LOAD); </script> diff --git a/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-sandbox-same-origin-self.html b/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-sandbox-same-origin-self.html index 4a2a19698d..825f9a8ae3 100644 --- a/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-sandbox-same-origin-self.html +++ b/testing/web-platform/tests/content-security-policy/frame-ancestors/frame-ancestors-sandbox-same-origin-self.html @@ -11,7 +11,7 @@ "should compare the child URL (self) against each parent's origin's URL" + " rather then URL. When the ancestors are sandboxed, they never match."); - testNestedSandboxedIFrame('self', SAME_ORIGIN, SAME_ORIGIN, EXPECT_BLOCK); + testNestedSandboxedIFrame("'self'", SAME_ORIGIN, SAME_ORIGIN, EXPECT_BLOCK); </script> </body> </html> |