blob: 8a88d209d809e15f922a5bbf6db83280a0fbf232 [file]
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
var textinput_helper = {
retrieveElementCoordinate: function(id) {
var ele = document.getElementById(id);
var coordinate = Math.floor(ele.offsetLeft) + ',' +
Math.floor(ele.offsetTop) + ',' +
Math.ceil(ele.offsetWidth) + ',' +
Math.ceil(ele.offsetHeight);
window.domAutomationController.send(coordinate);
}
};