| Index: Source/WebKit/chromium/tests/data/fixed-position.html
 | 
| diff --git a/Source/WebKit/chromium/tests/data/fixed-position.html b/Source/WebKit/chromium/tests/data/fixed-position.html
 | 
| deleted file mode 100644
 | 
| index be998916e5dab8c22f5126779a9c297cc438f77f..0000000000000000000000000000000000000000
 | 
| --- a/Source/WebKit/chromium/tests/data/fixed-position.html
 | 
| +++ /dev/null
 | 
| @@ -1,36 +0,0 @@
 | 
| -<!DOCTYPE html>
 | 
| -<html>
 | 
| -<head>
 | 
| -  <style>
 | 
| -    .fixed {
 | 
| -      position: fixed;
 | 
| -    }
 | 
| -    .top {
 | 
| -      top: 1px;
 | 
| -    }
 | 
| -    .bottom {
 | 
| -      bottom: 1px;
 | 
| -    }
 | 
| -    .left {
 | 
| -      left: 1px;
 | 
| -    }
 | 
| -    .right {
 | 
| -      right: 1px;
 | 
| -    }
 | 
| -  </style>
 | 
| -</head>
 | 
| -
 | 
| -<!-- Fixed position elements may skip compositing without a scrollable
 | 
| -ancestor. To make sure this test covers the intended scenario, we force the
 | 
| -body element to be tall, so that the FrameView is scrolling. -->
 | 
| -<body style="height: 4000px">
 | 
| -  <div id="div-tl" class="fixed top left">X</div>
 | 
| -  <div id="div-tr" class="fixed top right">X</div>
 | 
| -  <div id="div-bl" class="fixed bottom left">X</div>
 | 
| -  <div id="div-br" class="fixed bottom right">X</div>
 | 
| -  <span id="span-tl" class="fixed top left">X</span>
 | 
| -  <span id="span-tr" class="fixed top right">X</span>
 | 
| -  <span id="span-bl" class="fixed bottom left">X</span>
 | 
| -  <span id="span-br" class="fixed bottom right">X</span>
 | 
| -</body>
 | 
| -</html>
 | 
| 
 |