HomeSort by relevance Sort by last modified time
    Searched refs:naturalWidth (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DOMPresentationUtils.js 143 var naturalWidth = precomputedDimensions ? precomputedDimensions.naturalWidth : imageElement.naturalWidth;
145 var offsetWidth = precomputedDimensions ? precomputedDimensions.offsetWidth : naturalWidth;
149 if (offsetHeight === naturalHeight && offsetWidth === naturalWidth)
152 description = WebInspector.UIString("%d \xd7 %d pixels (Natural: %d \xd7 %d pixels)", offsetWidth, offsetHeight, naturalWidth, naturalHeight);
ImageView.js 88 { name: WebInspector.UIString("Dimensions"), value: WebInspector.UIString("%d × %d", imagePreviewElement.naturalWidth, imagePreviewElement.naturalHeight) },
ElementsPanel.js 441 return { offsetWidth: this.offsetWidth, offsetHeight: this.offsetHeight, naturalWidth: this.naturalWidth, naturalHeight: this.naturalHeight };
    [all...]
  /external/chromium_org/tools/perf/page_sets/tough_canvas_cases/canvas2d_balls_common/
bouncing_balls_draw_back_as_canvas.js 10 backImageCanvas.width = backImage.naturalWidth;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLImageElement.idl 41 readonly attribute long naturalWidth;
HTMLImageElement.h 47 int naturalWidth() const;
HTMLImageElement.cpp 255 int HTMLImageElement::naturalWidth() const
  /packages/apps/Camera2/src/com/android/camera/util/
CameraUtil.java 426 int naturalWidth, naturalHeight;
428 naturalWidth = displaySize.x;
431 naturalWidth = displaySize.y;
434 return naturalWidth < naturalHeight;
    [all...]

Completed in 334 milliseconds