| Index: LayoutTests/fast/repaint/selection-gap-overflow-scroll.html
|
| diff --git a/LayoutTests/fast/repaint/selection-gap-overflow-scroll.html b/LayoutTests/fast/repaint/selection-gap-overflow-scroll.html
|
| deleted file mode 100644
|
| index fe6ff6457bc0e61bff223090f25c4c7ef87b17a8..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/repaint/selection-gap-overflow-scroll.html
|
| +++ /dev/null
|
| @@ -1,33 +0,0 @@
|
| -<html>
|
| -<head>
|
| - <title></title>
|
| - <style type="text/css">
|
| - div#overflow { margin: 5px; padding: 10px; border: medium solid; width: 100px; height: 100px; overflow: auto; }
|
| - ::selection { background-color: red; }
|
| - </style>
|
| - <script type="text/javascript" src="resources/text-based-repaint.js"></script>
|
| - <script type="text/javascript">
|
| - function repaintTest()
|
| - {
|
| - getSelection().empty();
|
| - }
|
| - </script>
|
| -</head>
|
| -<body onload="runRepaintTest()">
|
| - <p>
|
| - Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=12590">http://bugs.webkit.org/show_bug.cgi?id=12590</a>
|
| - REGRESSION: Text selection is weird in textareas in Trac wiki editing pages</i>.
|
| - </p>
|
| - <div id="overflow">
|
| - <div style="height: 100px;"></div>
|
| - <span id="target">Lorem<br>ipsum</span>
|
| - </div>
|
| - <script type="text/javascript">
|
| - var overflow = document.getElementById("overflow");
|
| - overflow.scrollTop = overflow.scrollHeight;
|
| - var selection = getSelection();
|
| - var target = document.getElementById("target");
|
| - selection.setBaseAndExtent(target, 0, target, 3);
|
| - </script>
|
| -</body>
|
| -</html>
|
|
|