| Index: LayoutTests/inspector/elements/highlight-node-scroll.html
|
| diff --git a/LayoutTests/inspector/elements/highlight-node-scroll.html b/LayoutTests/inspector/elements/highlight-node-scroll.html
|
| deleted file mode 100644
|
| index fe2cbd8f53b207bcfeb9cf58287a4d24836f4816..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/inspector/elements/highlight-node-scroll.html
|
| +++ /dev/null
|
| @@ -1,69 +0,0 @@
|
| -<html>
|
| -<head>
|
| -
|
| -<style>
|
| -
|
| -body {
|
| - width: 2000px;
|
| - height: 2000px;
|
| - background-color: grey;
|
| -}
|
| -.inspected {
|
| - margin: 5px;
|
| - border: solid 10px aqua;
|
| - padding: 15px;
|
| - width: 200px;
|
| - height: 200px;
|
| - background-color: blue;
|
| - float: left;
|
| -}
|
| -#scrollingContainer {
|
| - clear: both;
|
| - width: 100px;
|
| - height: 100px;
|
| - overflow: auto;
|
| -}
|
| -#description {
|
| - clear: both;
|
| -}
|
| -
|
| -</style>
|
| -
|
| -<script src="../../http/tests/inspector/inspector-test.js"></script>
|
| -<script src="../../http/tests/inspector/elements-test.js"></script>
|
| -<script>
|
| -
|
| -function onload()
|
| -{
|
| - window.scrollBy(50, 100);
|
| - scrollingContainer = document.getElementById("scrollingContainer");
|
| - scrollingContainer.scrollTop = 50;
|
| - scrollingContainer.scrollLeft = 60;
|
| - runTest();
|
| -}
|
| -
|
| -function test()
|
| -{
|
| - InspectorTest.dumpInspectorHighlightJSON("inspectedElement1", testNode2);
|
| -
|
| - function testNode2()
|
| - {
|
| - InspectorTest.dumpInspectorHighlightJSON("inspectedElement2", InspectorTest.completeTest.bind(InspectorTest));
|
| - }
|
| -}
|
| -
|
| -</script>
|
| -</head>
|
| -
|
| -<body onload="onload()">
|
| -
|
| -<div id="inspectedElement1" class="inspected"></div>
|
| -
|
| -<div id="scrollingContainer">
|
| - <div id="inspectedElement2" class="inspected"></div>
|
| -</div>
|
| -
|
| -<p id="description">This test verifies the position and size of the highlight rectangles overlayed on an inspected div in the scrolled view.</p>
|
| -
|
| -</body>
|
| -</html>
|
|
|