writing-mode.js 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. 'use strict';
  2. function _defaults(obj, defaults) { var keys = Object.getOwnPropertyNames(defaults); for (var i = 0; i < keys.length; i++) { var key = keys[i]; var value = Object.getOwnPropertyDescriptor(defaults, key); if (value && value.configurable && obj[key] === undefined) { Object.defineProperty(obj, key, value); } } return obj; }
  3. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  4. function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
  5. function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : _defaults(subClass, superClass); }
  6. var Declaration = require('../declaration');
  7. var WritingMode = function (_Declaration) {
  8. _inherits(WritingMode, _Declaration);
  9. function WritingMode() {
  10. _classCallCheck(this, WritingMode);
  11. return _possibleConstructorReturn(this, _Declaration.apply(this, arguments));
  12. }
  13. WritingMode.prototype.set = function set(decl, prefix) {
  14. if (prefix === '-ms-') {
  15. decl.value = WritingMode.msValues[decl.value] || decl.value;
  16. return _Declaration.prototype.set.call(this, decl, prefix);
  17. } else {
  18. return _Declaration.prototype.set.call(this, decl, prefix);
  19. }
  20. };
  21. return WritingMode;
  22. }(Declaration);
  23. Object.defineProperty(WritingMode, 'names', {
  24. enumerable: true,
  25. writable: true,
  26. value: ['writing-mode']
  27. });
  28. Object.defineProperty(WritingMode, 'msValues', {
  29. enumerable: true,
  30. writable: true,
  31. value: {
  32. 'horizontal-tb': 'lr-tb',
  33. 'vertical-rl': 'tb-rl',
  34. 'vertical-lr': 'tb-lr'
  35. }
  36. });
  37. module.exports = WritingMode;