Index: chrome/test/data/instant/old_api.html |
diff --git a/chrome/test/data/instant/old_api.html b/chrome/test/data/instant/old_api.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..7f3d0067d94105dd9315530bcf8d5d174f7d1a65 |
--- /dev/null |
+++ b/chrome/test/data/instant/old_api.html |
@@ -0,0 +1,18 @@ |
+<html> |
+<body> |
+<script> |
+window.chrome.sv = true; |
+ |
+window.validHeight = false; |
+ |
+window.chrome.userInput = function(value, verbatim, ignored) { |
+ window.chrome.setSuggestResult(value); |
+}; |
+ |
+window.chrome.setDropdownDimensions = function(x, y, w, h) { |
+ window.validHeight = (h > 0); |
+}; |
+ |
+</script> |
+</body> |
+</html> |