Home | History | Annotate | Download | only in main

Lines Matching defs:cellElement

231         var cellElement = rowElement.createChild("td");
232 cellElement.createTextChild(WebInspector.UIString("Resolution:"));
233 cellElement = rowElement.createChild("td");
236 cellElement.appendChild(widthOverrideInput);
237 this._swapDimensionsElement = cellElement.createChild("button", "overrides-swap");
243 cellElement.appendChild(heightOverrideInput);
246 cellElement = rowElement.createChild("td");
247 cellElement.colSpan = 4;
516 var cellElement = rowElement.createChild("td");
517 cellElement = rowElement.createChild("td");
518 cellElement.createTextChild(WebInspector.UIString("Lat = "));
519 this._latitudeElement = WebInspector.SettingsUI.createInput(cellElement, "geolocation-override-latitude", String(geolocation.latitude), this._applyGeolocationUserInput.bind(this), true);
520 cellElement.createTextChild(" , ");
521 cellElement.createTextChild(WebInspector.UIString("Lon = "));
522 this._longitudeElement = WebInspector.SettingsUI.createInput(cellElement, "geolocation-override-longitude", String(geolocation.longitude), this._applyGeolocationUserInput.bind(this), true);
524 cellElement = rowElement.createChild("td");
525 cellElement.colSpan = 2;
534 cellElement.appendChild(geolocationErrorLabelElement);
612 var cellElement = rowElement.createChild("td", "accelerometer-inputs-cell");
614 this._alphaElement = this._createAxisInput(cellElement, "device-orientation-override-alpha", "\u03B1: ", String(deviceOrientation.alpha));
615 this._betaElement = this._createAxisInput(cellElement, "device-orientation-override-beta", "\u03B2: ", String(deviceOrientation.beta));
616 this._gammaElement = this._createAxisInput(cellElement, "device-orientation-override-gamma", "\u03B3: ", String(deviceOrientation.gamma));
618 var resetButton = cellElement.createChild("button", "text-button accelerometer-reset-button");