browser.js 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. (function () {
  2. /* global MutationObserver */
  3. function cssBlankPseudo(document, opts) {
  4. // configuration
  5. var className = Object(opts).className;
  6. var attr = Object(opts).attr || 'blank';
  7. var force = Object(opts).force;
  8. try {
  9. document.querySelector(':blank');
  10. if (!force) {
  11. return;
  12. }
  13. } catch (ignoredError) {
  14. /* do nothing and continue */
  15. } // observe value changes on <input>, <select>, and <textarea>
  16. var window = (document.ownerDocument || document).defaultView;
  17. observeValueOfHTMLElement(window.HTMLInputElement);
  18. observeValueOfHTMLElement(window.HTMLSelectElement);
  19. observeValueOfHTMLElement(window.HTMLTextAreaElement);
  20. observeSelectedOfHTMLElement(window.HTMLOptionElement); // form control elements selector
  21. var selector = 'INPUT,SELECT,TEXTAREA';
  22. var selectorRegExp = /^(INPUT|SELECT|TEXTAREA)$/; // conditionally update all form control elements
  23. Array.prototype.forEach.call(document.querySelectorAll(selector), function (node) {
  24. if (node.nodeName === 'SELECT') {
  25. node.addEventListener('change', configureCssBlankAttribute);
  26. } else {
  27. node.addEventListener('input', configureCssBlankAttribute);
  28. }
  29. configureCssBlankAttribute.call(node);
  30. }); // conditionally observe added or unobserve removed form control elements
  31. new MutationObserver(function (mutationsList) {
  32. mutationsList.forEach(function (mutation) {
  33. Array.prototype.forEach.call(mutation.addedNodes || [], function (node) {
  34. if (node.nodeType === 1 && selectorRegExp.test(node.nodeName)) {
  35. if (node.nodeName === 'SELECT') {
  36. node.addEventListener('change', configureCssBlankAttribute);
  37. } else {
  38. node.addEventListener('input', configureCssBlankAttribute);
  39. }
  40. configureCssBlankAttribute.call(node);
  41. }
  42. });
  43. Array.prototype.forEach.call(mutation.removedNodes || [], function (node) {
  44. if (node.nodeType === 1 && selectorRegExp.test(node.nodeName)) {
  45. if (node.nodeName === 'SELECT') {
  46. node.removeEventListener('change', configureCssBlankAttribute);
  47. } else {
  48. node.removeEventListener('input', configureCssBlankAttribute);
  49. }
  50. }
  51. });
  52. });
  53. }).observe(document, {
  54. childList: true,
  55. subtree: true
  56. }); // update a form control element’s css-blank attribute
  57. function configureCssBlankAttribute() {
  58. if (this.value || this.nodeName === 'SELECT' && this.options[this.selectedIndex].value) {
  59. if (attr) {
  60. this.removeAttribute(attr);
  61. }
  62. if (className) {
  63. this.classList.remove(className);
  64. }
  65. this.removeAttribute('blank');
  66. } else {
  67. if (attr) {
  68. this.setAttribute('blank', attr);
  69. }
  70. if (className) {
  71. this.classList.add(className);
  72. }
  73. }
  74. } // observe changes to the "value" property on an HTML Element
  75. function observeValueOfHTMLElement(HTMLElement) {
  76. var descriptor = Object.getOwnPropertyDescriptor(HTMLElement.prototype, 'value');
  77. var nativeSet = descriptor.set;
  78. descriptor.set = function set(value) {
  79. // eslint-disable-line no-unused-vars
  80. nativeSet.apply(this, arguments);
  81. configureCssBlankAttribute.apply(this);
  82. };
  83. Object.defineProperty(HTMLElement.prototype, 'value', descriptor);
  84. } // observe changes to the "selected" property on an HTML Element
  85. function observeSelectedOfHTMLElement(HTMLElement) {
  86. var descriptor = Object.getOwnPropertyDescriptor(HTMLElement.prototype, 'selected');
  87. var nativeSet = descriptor.set;
  88. descriptor.set = function set(value) {
  89. // eslint-disable-line no-unused-vars
  90. nativeSet.apply(this, arguments);
  91. var event = document.createEvent('Event');
  92. event.initEvent('change', true, true);
  93. this.dispatchEvent(event);
  94. };
  95. Object.defineProperty(HTMLElement.prototype, 'selected', descriptor);
  96. }
  97. }
  98. /* global self */
  99. self.cssBlankPseudo = cssBlankPseudo;
  100. })();
  101. //# sourceMappingURL=browser-global.js.map