| Index: third_party/WebKit/LayoutTests/compositing/layer-creation/iframe-clip-removed.html
|
| diff --git a/third_party/WebKit/LayoutTests/compositing/layer-creation/iframe-clip-removed.html b/third_party/WebKit/LayoutTests/compositing/layer-creation/iframe-clip-removed.html
|
| deleted file mode 100644
|
| index 6d9420ec2a72bf1cd6915275d5addfe545035be8..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/compositing/layer-creation/iframe-clip-removed.html
|
| +++ /dev/null
|
| @@ -1,45 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<style>
|
| - #subframe {
|
| - width: 400px;
|
| - height: 500px;
|
| - background-color: blue;
|
| - position: relative;
|
| - }
|
| -
|
| - #scroller {
|
| - height: 200px;
|
| - width: 300px;
|
| - position: absolute;
|
| - overflow: scroll;
|
| - }
|
| -
|
| - #clip {
|
| - position: absolute;
|
| - clip: rect(0px, 100px, 100px, 0px);
|
| - }
|
| -</style>
|
| -<script>
|
| - onload = function() {
|
| - // Render one frame with clipping, then remove the clip.
|
| - window.requestAnimationFrame(function() {
|
| - window.requestAnimationFrame(function() {
|
| - document.getElementById("clip").style.clip = "auto";
|
| - if (window.testRunner)
|
| - testRunner.notifyDone();
|
| - });
|
| - });
|
| - }
|
| -
|
| - if (window.testRunner && window.internals) {
|
| - testRunner.waitUntilDone();
|
| - internals.settings.setPreferCompositingToLCDTextEnabled(true);
|
| - }
|
| -
|
| -</script>
|
| -
|
| -<div id="scroller">
|
| - <div id="clip">
|
| - <iframe id="subframe"></iframe>
|
| - </div>
|
| -</div>
|
|
|