summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/instant/old_api.html
blob: 7f3d0067d94105dd9315530bcf8d5d174f7d1a65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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>