123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- (function () {
- /* global MutationObserver */
- function cssBlankPseudo(document, opts) {
- // configuration
- var className = Object(opts).className;
- var attr = Object(opts).attr || 'blank';
- var force = Object(opts).force;
- try {
- document.querySelector(':blank');
- if (!force) {
- return;
- }
- } catch (ignoredError) {
- /* do nothing and continue */
- } // observe value changes on <input>, <select>, and <textarea>
- var window = (document.ownerDocument || document).defaultView;
- observeValueOfHTMLElement(window.HTMLInputElement);
- observeValueOfHTMLElement(window.HTMLSelectElement);
- observeValueOfHTMLElement(window.HTMLTextAreaElement);
- observeSelectedOfHTMLElement(window.HTMLOptionElement); // form control elements selector
- var selector = 'INPUT,SELECT,TEXTAREA';
- var selectorRegExp = /^(INPUT|SELECT|TEXTAREA)$/; // conditionally update all form control elements
- Array.prototype.forEach.call(document.querySelectorAll(selector), function (node) {
- if (node.nodeName === 'SELECT') {
- node.addEventListener('change', configureCssBlankAttribute);
- } else {
- node.addEventListener('input', configureCssBlankAttribute);
- }
- configureCssBlankAttribute.call(node);
- }); // conditionally observe added or unobserve removed form control elements
- new MutationObserver(function (mutationsList) {
- mutationsList.forEach(function (mutation) {
- Array.prototype.forEach.call(mutation.addedNodes || [], function (node) {
- if (node.nodeType === 1 && selectorRegExp.test(node.nodeName)) {
- if (node.nodeName === 'SELECT') {
- node.addEventListener('change', configureCssBlankAttribute);
- } else {
- node.addEventListener('input', configureCssBlankAttribute);
- }
- configureCssBlankAttribute.call(node);
- }
- });
- Array.prototype.forEach.call(mutation.removedNodes || [], function (node) {
- if (node.nodeType === 1 && selectorRegExp.test(node.nodeName)) {
- if (node.nodeName === 'SELECT') {
- node.removeEventListener('change', configureCssBlankAttribute);
- } else {
- node.removeEventListener('input', configureCssBlankAttribute);
- }
- }
- });
- });
- }).observe(document, {
- childList: true,
- subtree: true
- }); // update a form control element’s css-blank attribute
- function configureCssBlankAttribute() {
- if (this.value || this.nodeName === 'SELECT' && this.options[this.selectedIndex].value) {
- if (attr) {
- this.removeAttribute(attr);
- }
- if (className) {
- this.classList.remove(className);
- }
- this.removeAttribute('blank');
- } else {
- if (attr) {
- this.setAttribute('blank', attr);
- }
- if (className) {
- this.classList.add(className);
- }
- }
- } // observe changes to the "value" property on an HTML Element
- function observeValueOfHTMLElement(HTMLElement) {
- var descriptor = Object.getOwnPropertyDescriptor(HTMLElement.prototype, 'value');
- var nativeSet = descriptor.set;
- descriptor.set = function set(value) {
- // eslint-disable-line no-unused-vars
- nativeSet.apply(this, arguments);
- configureCssBlankAttribute.apply(this);
- };
- Object.defineProperty(HTMLElement.prototype, 'value', descriptor);
- } // observe changes to the "selected" property on an HTML Element
- function observeSelectedOfHTMLElement(HTMLElement) {
- var descriptor = Object.getOwnPropertyDescriptor(HTMLElement.prototype, 'selected');
- var nativeSet = descriptor.set;
- descriptor.set = function set(value) {
- // eslint-disable-line no-unused-vars
- nativeSet.apply(this, arguments);
- var event = document.createEvent('Event');
- event.initEvent('change', true, true);
- this.dispatchEvent(event);
- };
- Object.defineProperty(HTMLElement.prototype, 'selected', descriptor);
- }
- }
- /* global self */
- self.cssBlankPseudo = cssBlankPseudo;
- })();
- //# sourceMappingURL=browser-global.js.map
|