Sha256: 64193be27738bdb5b405618476a7318bb5d465ad8aab4be5f6f6006bab30102d

Contents?: true

Size: 730 Bytes

Versions: 26

Compression:

Stored size: 730 Bytes

Contents

"use strict";
const DOMRectReadOnlyImpl = require("./DOMRectReadOnly-impl").implementation;
const DOMRect = require("../generated/DOMRect");

class DOMRectImpl extends DOMRectReadOnlyImpl {
  static fromRect(globalObject, other) {
    return DOMRect.createImpl(globalObject, [other.x, other.y, other.width, other.height]);
  }

  get x() {
    return super.x;
  }
  set x(newX) {
    this._x = newX;
  }

  get y() {
    return super.y;
  }
  set y(newY) {
    this._y = newY;
  }

  get width() {
    return super.width;
  }
  set width(newWidth) {
    this._width = newWidth;
  }

  get height() {
    return super.height;
  }
  set height(newHeight) {
    this._height = newHeight;
  }
}

exports.implementation = DOMRectImpl;

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
clapton-0.0.6 lib/clapton/javascripts/node_modules/jsdom/lib/jsdom/living/geometry/DOMRect-impl.js
clapton-0.0.5 lib/clapton/javascripts/node_modules/jsdom/lib/jsdom/living/geometry/DOMRect-impl.js
clapton-0.0.4 lib/clapton/javascripts/node_modules/jsdom/lib/jsdom/living/geometry/DOMRect-impl.js
clapton-0.0.3 lib/clapton/javascripts/node_modules/jsdom/lib/jsdom/living/geometry/DOMRect-impl.js
clapton-0.0.2 lib/clapton/javascripts/node_modules/jsdom/lib/jsdom/living/geometry/DOMRect-impl.js
clapton-0.0.1 lib/clapton/javascripts/node_modules/jsdom/lib/jsdom/living/geometry/DOMRect-impl.js