Index: third_party/WebKit/LayoutTests/inspector/sources/autocomplete-general.html |
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/autocomplete-general.html b/third_party/WebKit/LayoutTests/inspector/sources/autocomplete-general.html |
index 7c86662223a2ec4081baaae1616a34c2d73604d3..31ec7299e1b925eb9fe377e8e9cfcb5ec63ededa 100644 |
--- a/third_party/WebKit/LayoutTests/inspector/sources/autocomplete-general.html |
+++ b/third_party/WebKit/LayoutTests/inspector/sources/autocomplete-general.html |
@@ -45,6 +45,13 @@ function test() |
dumpDictionary(next); |
}, |
+ function testRemoveDuplicate(next) |
+ { |
+ textEditor.setText("one\none"); |
+ textEditor.setSelection(new WebInspector.TextRange(0, 0, 0, 3)); |
+ InspectorTest.typeIn(textEditor, "\b", dumpDictionary.bind(null, next)); |
+ }, |
+ |
function testSetText(next) |
{ |
textEditor.setText("dog cat 'mouse';dog bird"); |