Index: LayoutTests/inspector/editor/highlighter-paste-in-comment.html |
diff --git a/LayoutTests/inspector/editor/highlighter-paste-in-comment.html b/LayoutTests/inspector/editor/highlighter-paste-in-comment.html |
deleted file mode 100644 |
index a276cc782e865b8ba5d674abe74c64c1a3194d73..0000000000000000000000000000000000000000 |
--- a/LayoutTests/inspector/editor/highlighter-paste-in-comment.html |
+++ /dev/null |
@@ -1,53 +0,0 @@ |
-<html> |
-<head> |
-<script src="../../http/tests/inspector/inspector-test.js"></script> |
-<script src="highlighter-test.js"></script> |
-<script> |
- |
-function test() |
-{ |
- var textModel = new WebInspector.TextEditorModel(); |
- |
- var highlighter = new WebInspector.TextEditorHighlighter(textModel, function() {}); |
- highlighter.mimeType = "text/javascript"; |
- highlighter.highlightChunkLimit = Number.MAX_VALUE; // Synchronous. |
- |
- function dumpTextModel(msg) { |
- InspectorTest.addResult("\n" + msg); |
- InspectorTest.dumpTextModel(textModel); |
- } |
- |
- var src = "/*\n\n1\n2\n3\n4\n5\n\n*/"; |
- textModel.setText(src); |
- |
- highlighter.highlight(textModel.linesCount); |
- dumpTextModel("After highlighting all lines"); |
- |
- var range = new WebInspector.TextRange(7, 0, 7, 0); |
- var newRange = textModel.editRange(range, "1\n2\n3\n4\n5\n"); |
- highlighter.updateHighlight(7, textModel.linesCount); |
- dumpTextModel("After update highlights"); |
- |
- highlighter.highlight(textModel.linesCount); |
- dumpTextModel("After highlighting up to the end"); |
- |
- // There was an actual bug with wrongly restored position after updating the highlights. |
- var range = new WebInspector.TextRange(12, 0, 12, 0); |
- var newRange = textModel.editRange(range, "\n"); |
- highlighter.updateHighlight(12, textModel.linesCount); |
- highlighter.highlight(textModel.linesCount); |
- dumpTextModel("After inserting a new line"); |
- |
- InspectorTest.completeTest(); |
-} |
- |
-</script> |
-</head> |
- |
-<body onload="runTest()"> |
-<p> |
-This test checks against <a href="https://bugs.webkit.org/show_bug.cgi?id=54876">a bug</a> in the highlighter when pasting text inside a comment. |
-</p> |
- |
-</body> |
-</html> |