| Index: third_party/WebKit/LayoutTests/presentation/iframe-sandbox-default.html
|
| diff --git a/third_party/WebKit/LayoutTests/presentation/iframe-sandbox-default.html b/third_party/WebKit/LayoutTests/presentation/iframe-sandbox-default.html
|
| deleted file mode 100644
|
| index 4857da9044ba452b3c62a5b00e335059754d5a69..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/presentation/iframe-sandbox-default.html
|
| +++ /dev/null
|
| @@ -1,24 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<body>
|
| -<script src="../resources/testharness.js"></script>
|
| -<script src="../resources/testharnessreport.js"></script>
|
| -
|
| -<iframe sandbox='allow-scripts allow-same-origin'></iframe>
|
| -
|
| -<script>
|
| -
|
| -async_test(function(t) {
|
| - window.onmessage = t.step_func_done(function(e) {
|
| - e.data.forEach(function(result) {
|
| - assert_equals(result.status, 'failure', result.test);
|
| - assert_equals(result.name, 'SecurityError', result.test);
|
| - });
|
| - });
|
| -
|
| - document.querySelector('iframe').src = 'resources/embedded-smoke-tests.html';
|
| -}, 'Test that Presentation API is blocked inside a sandboxed iframe without "allow-presentation".');
|
| -
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|