| Index: LayoutTests/fast/frames/seamless/seamless-sandbox-srcdoc.html
|
| diff --git a/LayoutTests/fast/frames/seamless/seamless-sandbox-srcdoc.html b/LayoutTests/fast/frames/seamless/seamless-sandbox-srcdoc.html
|
| deleted file mode 100644
|
| index b90c428adaa3a0f2b3141a069a9d6a1e5a739c77..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/frames/seamless/seamless-sandbox-srcdoc.html
|
| +++ /dev/null
|
| @@ -1,16 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<script src="../../../resources/js-test.js"></script>
|
| -<div id="parent" style="width: 200px; height: 200px;">
|
| -<iframe id="iframe" seamless sandbox srcdoc="<html style='width: 100px; height: 100px; background-color: green'></html>"></iframe>
|
| -</div>
|
| -<script>
|
| -debug("Test that iframes with srcdoc contents can still be seamless.")
|
| -window.onload = function () {
|
| - window.iframe = document.getElementById("iframe");
|
| - shouldBeTrue("iframe.seamless");
|
| - // When an iframe is sandboxed, its origin is unique, thus seamless check
|
| - // should fail, but the spec makes a specific exception for srcdoc iframes.
|
| - shouldBeEqualToString("window.getComputedStyle(iframe).width", "200px");
|
| - shouldBeEqualToString("window.getComputedStyle(iframe).height", "100px");
|
| -}
|
| -</script>
|
|
|